8 lines
139 B
Python
8 lines
139 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
db = SQLAlchemy()
|
|
|
|
def init_db(app):
|
|
db.init_app(app)
|
|
with app.app_context():
|
|
db.reflect() |