add pet relationship
This commit is contained in:
parent
5e824f3bb3
commit
3772d7b023
1 changed files with 5 additions and 1 deletions
|
|
@ -1,8 +1,9 @@
|
|||
from typing import Optional
|
||||
|
||||
from sqlmodel import Field
|
||||
from sqlmodel import Field, Relationship
|
||||
|
||||
from learn_sql_model.models.fast_model import FastModel
|
||||
from learn_sql_model.models.pet import Pet
|
||||
|
||||
|
||||
class Hero(FastModel, table=True):
|
||||
|
|
@ -11,3 +12,6 @@ class Hero(FastModel, table=True):
|
|||
secret_name: str
|
||||
age: Optional[int] = None
|
||||
shoe_size: Optional[int] = None
|
||||
|
||||
pet_id: Optional[int] = Field(default=None, foreign_key="pet.id")
|
||||
pet: Optional[Pet] = Relationship(back_populates="hero")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue