示例#1
0
文件: manage.py 项目: blighli/MyBlog
def seed():
    from app.main.models import Post
    p1 = Post()
    p1.body = "Hello, welcome to the World!"
    db.session.add(p1)
    db.session.commit()
    pass