Skip to content
This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Commit be205bb

Browse files
committed
reset rows_processed as nullable
1 parent 0d83f86 commit be205bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdl/alembic/versions/00f2b412576b_normalize_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def downgrade():
128128
nullable=False),
129129
sa.Column('completed_on', sa.DateTime(timezone=True), nullable=True),
130130
sa.Column('execution_time_ms', sa.Integer(), nullable=True),
131-
sa.Column('rows_processed', sa.Integer(), nullable=False),
131+
sa.Column('rows_processed', sa.Integer(), nullable=True),
132132
sa.Column('model_checksum', sa.String(length=100), nullable=False),
133133
sa.Column('failure_reason', sa.String(length=1000), nullable=True),
134134
sa.ForeignKeyConstraint(['execution_id'], ['rdl.execution.id'], ),

0 commit comments

Comments
 (0)