forked from manukanne/sqlmodel-repository-pattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemas.py
40 lines (26 loc) · 1.19 KB
/
schemas.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from typing import Optional, List
from sqlmodel import SQLModel, Field, Column, Integer, String, ForeignKey, Relationship
from utilities import to_camel
class BaseModel(SQLModel):
"""Base SQL model class.
"""
id: Optional[int] = Field(sa_column=Column("Id", Integer, primary_key=True, autoincrement=True))
class Config:
alias_generator = to_camel
allow_population_by_field_name = True
arbitrary_types_allowed = True
class Hero(BaseModel, table=True):
"""Hero table.
"""
__tablename__ = "Hero"
name: str = Field(sa_column=Column("Name", String(30), nullable=False))
secret_name: str = Field(sa_column=Column("SecretName", String(30), nullable=False))
age: Optional[int] = Field(sa_column=Column("Age", Integer, nullable=True, default=None))
team_id: Optional[int] = Field(sa_column=Column("TeamId", Integer, ForeignKey("Team.Id")))
team: Optional["Team"] = Relationship(back_populates="heroes")
class Team(BaseModel, table=True):
"""Team table.
"""
__tablename__ = "Team"
name: str = Field(sa_column=Column("Name", String(30), nullable=False, unique=True))
heroes: List["Hero"] = Relationship(back_populates="team")