ashb commented on code in PR #25959:
URL: https://github.com/apache/airflow/pull/25959#discussion_r958461847
##########
airflow/migrations/versions/0114_2_4_0_add_dataset_model.py:
##########
@@ -94,6 +99,12 @@ def _create_task_outlet_dataset_reference_table():
name="todr_dataset_fkey",
ondelete="CASCADE",
),
+ sa.ForeignKeyConstraint(
+ columns=('dag_id',),
+ refcolumns=['dag.dag_id'],
+ name='todr_dag_id_fkey',
Review Comment:
Could you make this name match the same pattern we use on the rest of the
FKs please.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]