install.sql
5.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
-- //
--
-- Cria as tabelas para o módulo Regra de Avaliação. Esse módulo é composto por
-- outros 4 módulos interdependentes e por isso esse delta define a criação
-- das tabelas relacionadas.
--
-- @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
-- @license @@license@@
-- @version $Id$
--
CREATE TABLE "modules"."area_conhecimento" (
"id" serial NOT NULL,
"instituicao_id" int NOT NULL,
"nome" varchar(40) NOT NULL,
PRIMARY KEY("id","instituicao_id")
);
CREATE TABLE "modules"."componente_curricular" (
"id" serial NOT NULL,
"instituicao_id" int NOT NULL,
"area_conhecimento_id" int NOT NULL,
"nome" varchar(100) NOT NULL,
"abreviatura" varchar(15) NOT NULL,
"tipo_base" smallint NOT NULL,
PRIMARY KEY("id","instituicao_id")
);
CREATE TABLE "modules"."componente_curricular_ano_escolar" (
"componente_curricular_id" int NOT NULL,
"ano_escolar_id" int NOT NULL,
"carga_horaria" decimal(6,3) NOT NULL,
PRIMARY KEY("componente_curricular_id","ano_escolar_id")
);
CREATE TABLE "modules"."formula_media" (
"id" serial NOT NULL,
"instituicao_id" int NOT NULL,
"nome" varchar(50) NOT NULL,
"formula_media" varchar(50) NOT NULL,
"tipo_formula" smallint NULL DEFAULT 1,
PRIMARY KEY("id","instituicao_id")
);
CREATE TABLE "modules"."regra_avaliacao" (
"id" serial NOT NULL,
"instituicao_id" int NOT NULL,
"formula_media_id" int NOT NULL,
"formula_recuperacao_id" int NULL DEFAULT 0,
"tabela_arredondamento_id" int NULL,
"nome" varchar(50) NOT NULL,
"tipo_nota" smallint NOT NULL,
"tipo_progressao" smallint NOT NULL,
"media" decimal(5,3) NULL DEFAULT 00.000,
"porcentagem_presenca" decimal(6,3) NULL DEFAULT 00.000,
"parecer_descritivo" smallint NULL DEFAULT 0,
"tipo_presenca" smallint NOT NULL,
PRIMARY KEY("id","instituicao_id")
);
CREATE TABLE "modules"."tabela_arredondamento" (
"id" serial NOT NULL,
"instituicao_id" int NOT NULL,
"nome" varchar(50) NOT NULL,
"tipo_nota" smallint NOT NULL DEFAULT 1,
PRIMARY KEY("id","instituicao_id")
);
CREATE TABLE "modules"."tabela_arredondamento_valor" (
"id" serial NOT NULL,
"tabela_arredondamento_id" int NOT NULL,
"nome" varchar(5) NOT NULL,
"descricao" varchar(25) NULL,
"valor_minimo" decimal(5,3) NOT NULL,
"valor_maximo" decimal(5,3) NOT NULL,
PRIMARY KEY("id")
);
CREATE INDEX "area_conhecimento_nome_key"
ON "modules"."area_conhecimento"("nome");
CREATE INDEX "componente_curricular_area_conhecimento_key"
ON "modules"."componente_curricular"("area_conhecimento_id");
CREATE UNIQUE INDEX "componente_curricular_id_key"
ON "modules"."componente_curricular"("id");
CREATE UNIQUE INDEX "tabela_arredondamento_id_key"
ON "modules"."tabela_arredondamento"("id");
ALTER TABLE "modules"."componente_curricular"
ADD CONSTRAINT "componente_curricular_area_conhecimento_fk"
FOREIGN KEY("area_conhecimento_id", "instituicao_id")
REFERENCES "modules"."area_conhecimento"("id", "instituicao_id")
ON DELETE RESTRICT
ON UPDATE RESTRICT ;
ALTER TABLE "modules"."componente_curricular_ano_escolar"
ADD CONSTRAINT "componente_curricular_ano_escolar_fk"
FOREIGN KEY("componente_curricular_id")
REFERENCES "modules"."componente_curricular"("id")
ON DELETE RESTRICT
ON UPDATE RESTRICT ;
ALTER TABLE "modules"."regra_avaliacao"
ADD CONSTRAINT "regra_avaliacao_formula_media_formula_media_fk"
FOREIGN KEY("formula_media_id", "instituicao_id")
REFERENCES "modules"."formula_media"("id", "instituicao_id")
ON DELETE RESTRICT
ON UPDATE RESTRICT ;
ALTER TABLE "modules"."regra_avaliacao"
ADD CONSTRAINT "regra_avaliacao_formula_media_formula_recuperacao_fk"
FOREIGN KEY("formula_recuperacao_id", "instituicao_id")
REFERENCES "modules"."formula_media"("id", "instituicao_id")
ON DELETE RESTRICT
ON UPDATE RESTRICT ;
ALTER TABLE "modules"."regra_avaliacao"
ADD CONSTRAINT "regra_avaliacao_tabela_arredondamento_fk"
FOREIGN KEY("tabela_arredondamento_id", "instituicao_id")
REFERENCES "modules"."tabela_arredondamento"("id", "instituicao_id")
ON DELETE RESTRICT
ON UPDATE RESTRICT ;
ALTER TABLE "modules"."tabela_arredondamento_valor"
ADD CONSTRAINT "tabela_arredondamento_tabela_arredondamento_valor_fk"
FOREIGN KEY("tabela_arredondamento_id")
REFERENCES "modules"."tabela_arredondamento"("id")
ON DELETE RESTRICT
ON UPDATE RESTRICT ;
-- //@UNDO
DROP INDEX "area_conhecimento_nome_key";
DROP INDEX "componente_curricular_area_conhecimento_key";
DROP INDEX "componente_curricular_id_key";
DROP INDEX "tabela_arredondamento_id_key";
ALTER TABLE "modules"."componente_curricular"
DROP CONSTRAINT "componente_curricular_area_conhecimento_fk" CASCADE ;
ALTER TABLE "modules"."componente_curricular_ano_escolar"
DROP CONSTRAINT "componente_curricular_ano_escolar_fk" CASCADE ;
ALTER TABLE "modules"."regra_avaliacao"
DROP CONSTRAINT "regra_avaliacao_formula_media_formula_media_fk" CASCADE ;
ALTER TABLE "modules"."regra_avaliacao"
DROP CONSTRAINT "regra_avaliacao_formula_media_formula_recuperacao_fk" CASCADE ;
ALTER TABLE "modules"."regra_avaliacao"
DROP CONSTRAINT "regra_avaliacao_tabela_arredondamento_fk" CASCADE ;
ALTER TABLE "modules"."tabela_arredondamento_valor"
DROP CONSTRAINT "tabela_arredondamento_tabela_arredondamento_valor_fk" CASCADE ;
DROP TABLE "modules"."area_conhecimento";
DROP TABLE "modules"."componente_curricular";
DROP TABLE "modules"."componente_curricular_ano_escolar";
DROP TABLE "modules"."formula_media";
DROP TABLE "modules"."regra_avaliacao";
DROP TABLE "modules"."tabela_arredondamento";
DROP TABLE "modules"."tabela_arredondamento_valor";
--