7 lines
114 B
Python
7 lines
114 B
Python
![]() |
|
||
|
from flask_sqlalchemy import SQLAlchemy
|
||
|
from flask_migrate import Migrate
|
||
|
|
||
|
db = SQLAlchemy()
|
||
|
migrate = Migrate()
|