2024-07-08 07:43:59 +00:00
|
|
|
ALTER TABLE `vn`.`claimDestination`
|
|
|
|
ADD COLUMN `code` varchar(45) DEFAULT NULL;
|
|
|
|
|
2024-07-08 09:04:35 +00:00
|
|
|
UPDATE IGNORE vn.claimDestination SET code='Good' WHERE description= 'Bueno';
|
|
|
|
UPDATE IGNORE vn.claimDestination SET code='Garbage/Loss' WHERE description = 'Basura/Perd.';
|
2024-07-08 09:28:33 +00:00
|
|
|
UPDATE IGNORE vn.claimDestination SET code='Manufacturing' WHERE description = 'Confeccion';
|
2024-07-08 09:04:35 +00:00
|
|
|
UPDATE IGNORE vn.claimDestination SET code='Claim' WHERE description = 'Reclam.PRAG';
|
|
|
|
UPDATE IGNORE vn.claimDestination SET code='Corrected' WHERE description = 'Corregido';
|