Skip to content

Commit

Permalink
Fix sqlite constraints update and ignore session_session_id_uq index
Browse files Browse the repository at this point in the history
  • Loading branch information
ephraimbuddy committed May 2, 2024
1 parent fd87589 commit 5ca5f95
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,6 @@ def downgrade():
session.close()

with op.batch_alter_table("trigger") as batch_op:
batch_op.alter_column("kwargs", type_=ExtendedJSON(), postgresql_using='kwargs::json')
batch_op.alter_column(
"kwargs", type_=ExtendedJSON(), postgresql_using="kwargs::json", existing_nullable=False
)
2 changes: 1 addition & 1 deletion docs/apache-airflow/img/airflow_erd.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4a8aed085996d893909588dabe45906213629a545bbce7b551189c85121f88bd
17599c5958628056a2277267adf5320e4e09107d1ed8824fbb81fba937d0bf55
4 changes: 2 additions & 2 deletions docs/apache-airflow/img/airflow_erd.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5ca5f95

Please sign in to comment.