Commit 7b9abb1102b1a7b956b62d7befeb20f57bb2b529
1 parent
e47507de
Exists in
master
[4972]-Remoção do highcharts.
Showing
1 changed file
with
18 additions
and
0 deletions
Show diff stats
cit-portal-api/src/main/resources/scripts-bd/postgres/v2.1.0/01-cit-portal-2.1.0-postgres.sql
... | ... | @@ -4,3 +4,21 @@ ALTER TABLE Grupo ADD COLUMN ismaster BOOLEAN DEFAULT FALSE; |
4 | 4 | UPDATE MENU SET permissaoDeAcessoDefinida = true; |
5 | 5 | |
6 | 6 | -- Erick 29/04/2016 - FIM |
7 | + | |
8 | +--Rogério Gomes 18/05/2016 - INICIO | |
9 | +DELETE FROM widgetparametro | |
10 | + WHERE widget_id = (SELECT w.id FROM widget w WHERE nome = 'HighChart'); | |
11 | + | |
12 | +DELETE FROM widget WHERE nome = 'HighChart'; | |
13 | + | |
14 | +DELETE FROM defaultfile | |
15 | + WHERE caminho ILIKE '%HighChart%'; | |
16 | + | |
17 | +DELETE FROM dominio | |
18 | + WHERE chave = 'tipoHighChart'; | |
19 | + | |
20 | +DELETE FROM dominio | |
21 | + WHERE nome = 'highchartcit'; | |
22 | + | |
23 | + --Rogério Gomes 18/05/2016 - FIM | |
24 | + | ... | ... |