salix/db/versions/11158-redRaphis/00-firstScript.sql

6 lines
264 B
MySQL
Raw Normal View History

2024-07-17 14:09:09 +00:00
-- 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;