Remove unused 'lid' field from Timetable model
This commit is contained in:
parent
5fb0994017
commit
2542fa0ae0
1 changed files with 0 additions and 1 deletions
|
@ -26,7 +26,6 @@ class Notes(SQLModel, table=True):
|
||||||
|
|
||||||
class Timetable(SQLModel, table=True):
|
class Timetable(SQLModel, table=True):
|
||||||
id: int = Field(default=None, primary_key=True) # Add an auto-incrementing id
|
id: int = Field(default=None, primary_key=True) # Add an auto-incrementing id
|
||||||
lid: int
|
|
||||||
position : int
|
position : int
|
||||||
date: date
|
date: date
|
||||||
room: str | None
|
room: str | None
|
||||||
|
|
Loading…
Add table
Reference in a new issue