Skip to content

Commit

Permalink
fix: db bug (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaojin3616 authored Nov 21, 2024
2 parents 9fd7efe + 11ad8cf commit 19d5953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bisheng/database/models/mark_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class MarkRecordBase(SQLModelSerializable):
create_user: str = Field(index=True)
flow_type: str = Field(index=True)
create_id: int = Field(index=True)
app_id: int = Field(index=True)
app_id: int = Field(index=True, nullable=True)
task_id: int = Field(index=True)
session_id: str = Field(index=True)
status: int = Field(index=False, default=1)
Expand Down

0 comments on commit 19d5953

Please sign in to comment.