10 lines
207 B
Python
10 lines
207 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
db = SQLAlchemy()
|
|
|
|
def init_db(app):
|
|
"""Initialize database with app context"""
|
|
db.init_app(app)
|
|
with app.app_context():
|
|
db.create_all()
|