コード例 #1
0
 def create_app(self, app=app):
     app.config.from_object(TestingConfig)
     with app.app_context():
         db.create_all()
     return app
コード例 #2
0
 def create_app(self, app=app):
     app.config.from_object(TestingConfig)
     with app.app_context():
         db.create_all()
     return app
コード例 #3
0
def create_db():
	"""Creates the db tables."""
	db.create_all()