8 lines
298 B
MySQL
8 lines
298 B
MySQL
|
-- Place your SQL code here
|
||
|
USE vn;
|
||
|
|
||
|
ALTER TABLE vn.ticketConfig ADD packingDelay int(11) DEFAULT 1 NULL COMMENT 'Horas que marcará el retraso respecto hora de cierre web del ticket';
|
||
|
|
||
|
INSERT INTO vn.silexACL
|
||
|
(module, `method`, `role`)
|
||
|
VALUES( 'almacennew', 'ticket_isOutClosureZone', 'employee');
|