8 lines
190 B
Python
8 lines
190 B
Python
from sqlmodel import SQLModel, Field
|
|
|
|
|
|
class FSMStorage(SQLModel, table = True):
|
|
|
|
__tablename__ = "fsm_storage"
|
|
key: str = Field(primary_key = True)
|
|
value: str | None = None |