mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-17 12:24:55 +00:00
8 lines
191 B
Python
8 lines
191 B
Python
|
from typing import Optional
|
||
|
|
||
|
from sqlmodel import SQLModel, Field
|
||
|
|
||
|
|
||
|
class Admin(SQLModel, table=True):
|
||
|
id: Optional[int] = Field(default=None, primary_key=True)
|
||
|
user_id: int = Field()
|