mirror of
https://github.com/testdrivenio/fastapi-sqlmodel-alembic.git
synced 2025-08-16 18:21:08 +08:00
16 lines
236 B
Python
16 lines
236 B
Python
from sqlmodel import SQLModel, Field
|
|
|
|
|
|
class SongBase(SQLModel):
|
|
name: str
|
|
artist: str
|
|
year: str
|
|
|
|
|
|
class Song(SongBase, table=True):
|
|
id: int = Field(default=None, primary_key=True)
|
|
|
|
|
|
class SongCreate(SongBase):
|
|
pass
|