user_table.py 172 B

123456
  1. import sqlmodel
  2. class user_table(sqlmodel.SQLModel, table = True):
  3. id: int | None = sqlmodel.Field(default = None, primary_key = True)
  4. nick: str
  5. password: str