10 lines
159 B
Python
10 lines
159 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
pass
|
|
|
|
|
|
db = SQLAlchemy(model_class=Base)
|