6 lines
264 B
MySQL
6 lines
264 B
MySQL
|
-- 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;
|