salix/db/versions/11101-limeCordyline/00-firstScript.sql

13 lines
325 B
MySQL
Raw Permalink Normal View History

2024-06-13 11:11:50 +00:00
UPDATE IGNORE bs.nightTask
SET `schema` = 'vn',
`procedure` = 'claimRatio_add'
WHERE `procedure` = 'claim_ratio_routine';
2024-06-17 07:42:16 +00:00
ALTER TABLE vn.claimConfig
ADD monthsToRefund int(11) DEFAULT NULL NULL,
ADD minShipped date DEFAULT NULL NULL;
UPDATE IGNORE vn.claimConfig
SET monthsToRefund = 4,
minShipped = '2016-10-01';