本文整理汇总了Python中models.Setting.db_version方法的典型用法代码示例。如果您正苦于以下问题:Python Setting.db_version方法的具体用法?Python Setting.db_version怎么用?Python Setting.db_version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Setting
的用法示例。
在下文中一共展示了Setting.db_version方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_app
# 需要导入模块: from models import Setting [as 别名]
# 或者: from models.Setting import db_version [as 别名]
def create_app(config):
if config is None:
config = 'dev'
if not os.path.isfile(CONFIG_FILE):
create_config()
#Create Flask application
app = Flask(__name__)
app.config.from_object(configurations[config])
#set 404 errors to the not_found function
app.error_handler_spec[None][404] = not_found
#Init flask extentinons
db.init_app(app)
with app.app_context():
from models import Setting
try:
db_version = Setting.db_version()
if db_version < Setting.DB_VERSION:
#TODO: Implement settings db upgrade code
print " * Upgrading the settings database"
except:
pass
from .api_v1 import api_v1
app.register_blueprint(api_v1)
return app