Commit 5ce864cfffdc5807c180e0c320709df0ea4f3111
1 parent
48bdee43
Exists in
master
redmine #4738 Adicionado script que remove/desvincula o cadastro de unidade de m…
…edida do modulo adm-materias.
Showing
1 changed file
with
8 additions
and
1 deletions
Show diff stats
cit-adm-materiais-api/src/main/resources/scripts-bd/postgres/v1.15.0/01-cit-adm-materiais-v1.15.0-postgres.sql
... | ... | @@ -1487,4 +1487,11 @@ ALTER TABLE alm_me_localestoque DROP CONSTRAINT uk_qnx0r3sv9yxte5bholpq15k4p; |
1487 | 1487 | |
1488 | 1488 | -- JOYFAS INICIO 06/05/16 |
1489 | 1489 | alter table MatConsumoTipoUnidadeEntrada add isPadrao boolean |
1490 | --- JOYFAS FIM 06/05/16 | |
1491 | 1490 | \ No newline at end of file |
1491 | +-- JOYFAS FIM 06/05/16 | |
1492 | + | |
1493 | +-- THIAGO INICIO 09/05/2016 | |
1494 | +delete from menufile where menu_id = (select id from menu where chave = 'UNIDADE_DE_MEDIDA'); | |
1495 | +delete from menugrupo where menu_id = (select id from menu where chave = 'UNIDADE_DE_MEDIDA') | |
1496 | +delete from menu where chave = 'UNIDADE_DE_MEDIDA'; | |
1497 | +delete from pagina where nome = 'Unidade de medida'; | |
1498 | +-- THIAGO FIM 09/05/2016 | |
1492 | 1499 | \ No newline at end of file | ... | ... |