WUT_Computer_Science/SQL stuff/RUN_ME_BEFORE_AFTER_POPULATE.sql

21 lines
554 B
MySQL
Raw Normal View History

2023-01-04 21:02:36 +01:00
-- RUN NEXT 3 LINES BEFORE RUNNING POPULATE SCRIPT
alter table manager
DISABLE constraint manager_club_fk;
alter table club
DISABLE constraint club_manager_fk;
alter table club
DISABLE constraint club_competition_fk;
2023-01-04 21:02:36 +01:00
-- RUN 3 LINES BEFORE RUNNING POPULATE SCRIPT
2022-12-15 09:52:58 +01:00
2023-01-04 21:02:36 +01:00
-- RUN NEXT 3 LINES AFTER RUNNING POPULATE SCRIPT
alter table manager
ENABLE constraint manager_club_fk;
alter table club
ENABLE constraint club_manager_fk;
alter table club
2023-01-04 21:02:36 +01:00
ENABLE constraint club_competition_fk;
-- RUN LAST 3 LINES AFTER RUNNING POPULATE SCRIPT