19 lines
No EOL
322 B
Python
19 lines
No EOL
322 B
Python
from sqlmodel import SQLModel, Field
|
|
|
|
class Project(SQLModel, table=True):
|
|
|
|
id: int | None = Field(
|
|
default=None,
|
|
primary_key=True
|
|
)
|
|
|
|
parent_id: int | None = Field(
|
|
default=None,
|
|
foreign_key="project.id"
|
|
)
|
|
|
|
title: str
|
|
|
|
content: str | None = Field(default=None)
|
|
|
|
|