Update the length style of the model columns (#883)

* Update the length style of the model columns

* Fix opera log table username column length

* Fix login log table username column length
This commit is contained in:
Wu Clan
2025-10-23 15:00:28 +08:00
committed by GitHub
parent 3c39d2f2f3
commit 4540cd9338
15 changed files with 70 additions and 70 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ class Notice(Base):
__tablename__ = 'sys_notice'
id: Mapped[id_key] = mapped_column(init=False)
title: Mapped[str] = mapped_column(sa.String(50), comment='标题')
title: Mapped[str] = mapped_column(sa.String(64), comment='标题')
type: Mapped[int] = mapped_column(comment='类型(0:通知、1:公告)')
status: Mapped[int] = mapped_column(comment='状态(0:隐藏、1:显示)')
content: Mapped[str] = mapped_column(UniversalText, comment='内容')