File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ class Job(CommonColumns, Base):
103
103
url = Column (String (256 ), default = generate_jobs_url )
104
104
pid = Column (Integer )
105
105
idempotency_token = Column (String (256 ))
106
- depends_on = Column (JsonType ( 1024 ) )
106
+ depends_on = Column (JsonType )
107
107
workflow_id = Column (String (36 ))
108
108
# All new columns added to this table must be nullable to ensure compatibility during database migrations.
109
109
# Any default values specified for new columns will be ignored during the migration process.
@@ -113,7 +113,7 @@ class Workflow(Base):
113
113
__tablename__ = "workflows"
114
114
__table_args__ = {"extend_existing" : True }
115
115
workflow_id = Column (String (36 ), primary_key = True , default = generate_uuid )
116
- tasks = Column (JsonType ( 1024 ) )
116
+ tasks = Column (JsonType )
117
117
status = Column (String (64 ), default = Status .CREATED )
118
118
# All new columns added to this table must be nullable to ensure compatibility during database migrations.
119
119
# Any default values specified for new columns will be ignored during the migration process.
You can’t perform that action at this time.
0 commit comments