Removed redundant stuff

This commit is contained in:
Hannah dagemark 2026-08-06 22:56:13 +02:00
commit f5b274a678
5 changed files with 1 additions and 43 deletions

View file

@ -1,12 +0,0 @@
from sqlmodel import SQLModel, Field
class ExampleModel(SQLModel, table=True):
id: int | None = Field(
default=None,
primary_key=True
)
example_text: str
example_number: int