本文整理汇总了Python中project.db.drop_all方法的典型用法代码示例。如果您正苦于以下问题:Python db.drop_all方法的具体用法?Python db.drop_all怎么用?Python db.drop_all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类project.db
的用法示例。
在下文中一共展示了db.drop_all方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: recreate_db
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def recreate_db():
db.drop_all()
db.create_all()
db.session.commit()
示例2: tearDown
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def tearDown(self):
db.session.remove()
db.drop_all()
示例3: recreate_db
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def recreate_db():
"""Recreates a database."""
db.drop_all()
db.create_all()
db.session.commit()
示例4: recreate_db
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def recreate_db():
"""Recreates a database."""
db.reflect()
db.drop_all()
db.create_all()
db.session.commit()
示例5: setUp
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def setUp(self):
app.config['TESTING'] = True
app.config['WTF_CSRF_ENABLED'] = False
app.config['DEBUG'] = False
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://localhost/test'
self.app = app.test_client()
db.drop_all()
db.create_all()
mail.init_app(app)
self.assertEqual(app.debug, False)
示例6: drop_db
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def drop_db():
"""Recreates a database."""
db.drop_all()
db.session.commit()
示例7: create_db
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def create_db():
db.drop_all()
db.create_all()
db.session.commit()
示例8: tearDownClass
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def tearDownClass(self):
db.session.remove()
db.drop_all()
示例9: drop_db
# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def drop_db():
"""Drops the db tables."""
db.drop_all()