Skip to content

Commit

Permalink
add platform field for code_application
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydzhou committed Jan 3, 2024
1 parent 9e74d24 commit ba88559
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/model/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ class CodeApplication(Base):
team_id = db.Column(
ObjID(12), ForeignKey("team.id"), nullable=True, comment="属于哪一个组"
)
platform = db.Column(db.String(128), nullable=True, comment="平台:github")
installation_id = db.Column(db.String(128), nullable=True, comment="安装id")
extra = db.Column(
JSONStr(1024), nullable=True, server_default=text("'{}'"), comment="其他字段"
Expand Down

0 comments on commit ba88559

Please sign in to comment.