上传日志表增加前测字段

This commit is contained in:
18610128193
2026-06-25 11:04:40 +08:00
parent 3c41f56ce5
commit 5fc1e43d4e
2 changed files with 33 additions and 1 deletions
+4 -1
View File
@@ -27,4 +27,7 @@ class UploadTask(Base, TimestampMixin, SoftDeleteMixin):
)
oauth_id: Mapped[str] = mapped_column(
String(64), nullable=False, index=True, comment="授权表id"
)
)
other_info: Mapped[str | None] = mapped_column(
String(500), nullable=True, comment="其他信息"
)