fix(room): rename ended_at to ends_at to fix room ended bug

This commit is contained in:
chenjintang-shrimp
2025-08-08 17:34:47 +00:00
parent 0710ccecbe
commit a4461d4efb

View File

@@ -35,7 +35,7 @@ class RoomBase(SQLModel, UTCBaseModel):
),
default=datetime.now(UTC),
)
ended_at: datetime | None = Field(
ends_at: datetime | None = Field(
sa_column=Column(
DateTime(timezone=True),
),