11 lines
297 B
Python
11 lines
297 B
Python
|
from sqlalchemy.orm import Mapped, mapped_column
|
||
|
from sqlalchemy import String
|
||
|
|
||
|
from database import Base
|
||
|
|
||
|
|
||
|
class Event(Base):
|
||
|
__tablename__ = 'event'
|
||
|
id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
|
||
|
title: Mapped[str] = mapped_column(String(128), nullable=False)
|