This commit is contained in:
parent
3fa0823d93
commit
a796787cb5
|
@ -1,8 +1,8 @@
|
|||
ALTER TABLE `vn`.`claimDestination`
|
||||
ADD COLUMN `code` varchar(45) DEFAULT NULL;
|
||||
|
||||
UPDATE vn.claimDestination SET code='Good' WHERE description= 'Bueno';
|
||||
UPDATE vn.claimDestination SET code='Garbage/Loss' WHERE description = 'Basura/Perd.';
|
||||
UPDATE vn.claimDestination SET code='Manufacturing'WHERE description = 'Confeccion';
|
||||
UPDATE vn.claimDestination SET code='Claim' WHERE description = 'Reclam.PRAG';
|
||||
UPDATE vn.claimDestination SET code='Corrected' WHERE description = 'Corregido';
|
||||
UPDATE IGNORE vn.claimDestination SET code='Good' WHERE description= 'Bueno';
|
||||
UPDATE IGNORE vn.claimDestination SET code='Garbage/Loss' WHERE description = 'Basura/Perd.';
|
||||
UPDATE IGNORE vn.claimDestination SET code='Manufacturing'WHERE description = 'Confeccion';
|
||||
UPDATE IGNORE vn.claimDestination SET code='Claim' WHERE description = 'Reclam.PRAG';
|
||||
UPDATE IGNORE vn.claimDestination SET code='Corrected' WHERE description = 'Corregido';
|
Loading…
Reference in New Issue