feat: refs #6738 crear las Fk de la tabla flight
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Robert Ferrús 2024-02-19 15:10:34 +01:00
parent c4907d1a33
commit 4f6ae220e1
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
-- Place your SQL code here
ALTER TABLE IF EXISTS vn.flight ADD CONSTRAINT flight_airline_FK FOREIGN KEY (airlineFk)
REFERENCES vn.airline(id) ON DELETE CASCADE ON UPDATE CASCADE;