Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion airflow-core/docs/img/airflow_erd.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e7944da8d5f938084cf3b055a0380492ee2a61154ef54801397bb5167f975d6d
173317aa67c36d8a257bc31c99eeedf906390cebdd9c6941d6e9c3db0515d5c5
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ def upgrade():
with op.batch_alter_table("dag_version", schema=None) as batch_op:
batch_op.add_column(sa.Column("bundle_name", StringID()))
batch_op.add_column(sa.Column("bundle_version", StringID()))
# delete import_error table rows
op.get_bind().execute(sa.text("DELETE FROM import_error"))


def downgrade():
Expand Down