hotFix reservas refs #6861

This commit is contained in:
Sergio De la torre 2024-07-17 16:21:37 +02:00
parent 5130b4ebdd
commit 8ff3e8acb0
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
-- Place your SQL code here
ALTER TABLE vn.itemShelvingSaleReserve ADD sectorFk int(11) NULL;
ALTER TABLE vn.itemShelvingSaleReserve ADD CONSTRAINT itemShelvingSaleReserve_sector_FK FOREIGN KEY (id) REFERENCES vn.sector(id) ON DELETE RESTRICT ON UPDATE CASCADE;
ALTER TABLE IF EXISTS vn.itemShelvingSaleReserve ADD sectorFk int(11) NULL;
ALTER TABLE IF EXISTS vn.itemShelvingSaleReserve ADD CONSTRAINT itemShelvingSaleReserve_sector_FK FOREIGN KEY (id) REFERENCES vn.sector(id) ON DELETE RESTRICT ON UPDATE CASCADE;