mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
277 B
Python
14 lines
277 B
Python
from typing import Optional
|
|
from sqlmodel import SQLModel, Field
|
|
|
|
|
|
class Whlg(SQLModel, table=True):
|
|
__tablename__ = "whlg"
|
|
|
|
id: Optional[int] = Field(
|
|
default=None,
|
|
primary_key=True,
|
|
index=True,
|
|
)
|
|
|
|
postcode: str = Field(nullable=False)
|