11 lines
273 B
Python
11 lines
273 B
Python
from sqlmodel import Field, SQLModel
|
|
|
|
|
|
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)
|