We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a46b8d commit 70a70a6Copy full SHA for 70a70a6
jupyter_scheduler/orm.py
@@ -103,7 +103,7 @@ class Job(CommonColumns, Base):
103
url = Column(String(256), default=generate_jobs_url)
104
pid = Column(Integer)
105
idempotency_token = Column(String(256))
106
- completed_cells = Column(Integer)
+ completed_cells = Column(Integer, nullable=True)
107
# All new columns added to this table must be nullable to ensure compatibility during database migrations.
108
# Any default values specified for new columns will be ignored during the migration process.
109
0 commit comments