当前位置: 首页>>代码示例>>Python>>正文


Python db.drop_all方法代码示例

本文整理汇总了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() 
开发者ID:testdrivenio,项目名称:flask-docker-swarm,代码行数:6,代码来源:manage.py

示例2: tearDown

# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def tearDown(self):
        db.session.remove()
        db.drop_all() 
开发者ID:testdrivenio,项目名称:flask-microservices-users,代码行数:5,代码来源:base.py

示例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() 
开发者ID:testdrivenio,项目名称:flask-microservices-users,代码行数:7,代码来源:manage.py

示例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() 
开发者ID:mtnbarreto,项目名称:flask-base-api,代码行数:8,代码来源:manage.py

示例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) 
开发者ID:jelmerdejong,项目名称:flask-app-blueprint,代码行数:13,代码来源:test_items.py

示例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() 
开发者ID:apoclyps,项目名称:my-dev-space,代码行数:6,代码来源:manage.py

示例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() 
开发者ID:testdrivenio,项目名称:flask-on-docker,代码行数:6,代码来源:manage.py

示例8: tearDownClass

# 需要导入模块: from project import db [as 别名]
# 或者: from project.db import drop_all [as 别名]
def tearDownClass(self):
        db.session.remove()
        db.drop_all() 
开发者ID:realpython,项目名称:flask-registration,代码行数:5,代码来源:util.py

示例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() 
开发者ID:realpython,项目名称:flask-registration,代码行数:5,代码来源:manage.py


注:本文中的project.db.drop_all方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。