Azure deployment setup #297

Closed
RecentRunner wants to merge 429 commits from azure-deploy into main
Showing only changes of commit 4164e6ff21 - Show all commits

View File

@@ -0,0 +1,3 @@
ALTER TABLE appointment MODIFY petId BIGINT NULL;
ALTER TABLE appointment DROP FOREIGN KEY fk_appointment_pet;
ALTER TABLE appointment ADD CONSTRAINT fk_appointment_pet FOREIGN KEY (petId) REFERENCES pet(petId) ON DELETE SET NULL;