Force7 / database.py
zetarmany's picture
Create database.py
376f4a6 verified
raw
history blame contribute delete
164 Bytes
# database.py
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()
def init_db(app):
db.init_app(app)
with app.app_context():
db.create_all()