6 lines
167 B
Python
6 lines
167 B
Python
from sqlalchemy import Column, Integer
|
|
from app.database import Base
|
|
|
|
class Model(Base):
|
|
__abstract__ = True
|
|
id = Column(Integer, primary_key=True, index=True) |