import sqlmodel class user_table(sqlmodel.SQLModel, table = True): id: int | None = sqlmodel.Field(default = None, primary_key = True) nick: str password: str