Jacob Windsor 3365c4b940 Add init
2025-02-19 12:31:56 +01:00

9 lines
208 B
Python

from sqlmodel import SQLModel, Field
from uuid import uuid4
class Owner(SQLModel, table=True):
id: int = Field(default_factory=uuid4, primary_key=True)
name: str
email: str
# TODO add houses