Skip to content

Commit

Permalink
tt
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce.wu committed Sep 27, 2024
1 parent 886ad55 commit 4dbe3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ops/database/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ class ConfigOpsChangeLog(Base):
system_id = mapped_column(String(32), nullable=False, comment="系统ID")
system_type = mapped_column(String(30), nullable=False, comment="系统类型")
exectype = mapped_column(String(30), nullable=False, comment="执行类型")
checksum = mapped_column(String(128), nullable=False, comment="checksum")
author = mapped_column(String(128))
checksum = mapped_column(String(128), nullable=True, comment="checksum")
author = mapped_column(String(128), comment="作者")
filename = mapped_column(String(1024))
comment = mapped_column(String(2048))

Expand Down

0 comments on commit 4dbe3f0

Please sign in to comment.