Commit 4cb02c1bb3bb358a27f8ab4fa27b095a23535166
1 parent
665aa214
Exists in
master
Redmine #4783 Correção nos scripts
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
cit-tabelas-corp-api/src/main/resources/scripts-migracao/postgres/v1.15.0/01-cit-tabelas-corp-v1.15.0-postgres.sql
1 | 1 | --Juliana 10-05-2016 |
2 | 2 | --########################################################################### |
3 | ---########## ATENÇÃO NOS CLIENTES ########################################### | |
3 | +--## ATENÇÃO NOS CLIENTES - DESCOMENTAR OS SCRIPTS ESPECIFICOS PRO CLIENTE ## | |
4 | 4 | --########################################################################### |
5 | 5 | |
6 | 6 | --Script deve ser rodado somente no cliente MPOG |
7 | - | |
7 | +/** | |
8 | 8 | update unidademedida |
9 | 9 | set quantidadepadrao = 100 |
10 | 10 | where codigo = '059' and quantidadepadrao is null; |
... | ... | @@ -17,9 +17,9 @@ where codigo = '063' and quantidadepadrao is null; |
17 | 17 | update unidademedida |
18 | 18 | set quantidadepadrao = 1 |
19 | 19 | where quantidadepadrao is null; |
20 | - | |
20 | +*/ | |
21 | 21 | --Script deve ser rodado somente no cliente ICMBIO |
22 | - | |
22 | +/** | |
23 | 23 | update unidademedida |
24 | 24 | set quantidadepadrao = 1000 |
25 | 25 | where codigo IN ('011', '108') and quantidadepadrao is null; |
... | ... | @@ -36,11 +36,11 @@ where codigo IN ('117') and quantidadepadrao is null; |
36 | 36 | update unidademedida |
37 | 37 | set quantidadepadrao = 1 |
38 | 38 | where quantidadepadrao is null; |
39 | - | |
39 | +*/ | |
40 | 40 | --Demais clientes |
41 | - | |
41 | +/** | |
42 | 42 | update unidademedida |
43 | 43 | set quantidadepadrao = 1 |
44 | 44 | where quantidadepadrao is null; |
45 | - | |
45 | +*/ | |
46 | 46 | --Juliana 10-05-2016 |
47 | 47 | \ No newline at end of file | ... | ... |