12 lines
346 B
Python
12 lines
346 B
Python
from typing import Optional
|
|
from sqlmodel import SQLModel, Field
|
|
|
|
class MatchdayPlayerLink(SQLModel, table=True):
|
|
|
|
player_id: Optional[int] = Field(
|
|
default=None, foreign_key="player.id", primary_key=True
|
|
)
|
|
matchday_id: Optional[int] = Field(
|
|
default=None, foreign_key="matchday.id", primary_key=True
|
|
)
|