12 lines
No EOL
209 B
Python
12 lines
No EOL
209 B
Python
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 |