6 lines
164 B
Python
6 lines
164 B
Python
|
from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column
|
||
|
from sqlalchemy import Integer
|
||
|
from typing import Annotated
|
||
|
|
||
|
class Base(DeclarativeBase):
|
||
|
pass
|