5 lines
117 B
Python
5 lines
117 B
Python
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
from flask_migrate import Migrate
|
||
|
|
||
|
db = SQLAlchemy()
|
||
|
migrate = Migrate(db=db)
|