]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE_App/src/GDE_DB_Init.sql
Salome HOME
Working on Profiles
[modules/gde.git] / projects / GDE_App / src / GDE_DB_Init.sql
1 /* Unique Ids sequence generator */
2
3 drop sequence SEQ_GEN_SEQUENCE;
4 create sequence SEQ_GEN_SEQUENCE START WITH 1000 INCREMENT BY 50;
5
6
7 DROP TABLE IF EXISTS GROUP_ CASCADE;
8 CREATE TABLE GROUP_ (
9     id bigint NOT NULL PRIMARY KEY,
10     groupName varchar(255) NOT NULL
11 );
12
13 DROP TABLE IF EXISTS USERS CASCADE;
14 CREATE TABLE USERS (
15     id bigint NOT NULL PRIMARY KEY,
16     userName varchar(255) not null,
17     userpassword varchar(255) not null
18 );
19 CREATE INDEX users_username_index ON USERS(userName);
20
21 DROP TABLE IF EXISTS USERGROUP CASCADE;
22 CREATE TABLE USERGROUP (
23     id bigint NOT NULL PRIMARY KEY,
24     groupId bigint references GROUP_(id) on delete cascade,
25     userId bigint references USERS(id)  on delete cascade
26 );
27 create index usergroup_groupId_idx ON USERGROUP(groupId);
28
29
30
31 DROP TABLE IF EXISTS GROUPPERMISSIONS CASCADE;
32 CREATE TABLE GROUPPERMISSIONS (
33     id bigint NOT NULL PRIMARY KEY,
34     groupId bigint references GROUP_(id),
35     serviceName varchar(255) not null,
36     methodIndex int not null
37 );
38
39 /* METADATA */
40
41 DROP TABLE IF EXISTS attribute_group CASCADE;
42 CREATE TABLE attribute_group (
43     id bigint NOT NULL PRIMARY KEY
44 );
45
46 DROP TABLE IF EXISTS attribute CASCADE;
47 CREATE TABLE attribute (
48     id bigint NOT NULL PRIMARY KEY,
49     name varchar(255),
50     type varchar(255),
51     value varchar(255),
52     attribute_group_id bigint REFERENCES attribute_group (id),
53     mandatory boolean
54 );
55
56 DROP TABLE IF EXISTS attribute_group_attribute CASCADE;
57 CREATE TABLE attribute_group_attribute
58 (
59   attributegroup_id bigint  REFERENCES attribute_group (id) ON UPDATE NO ACTION ON DELETE NO ACTION,
60   attribute_id bigint REFERENCES attribute (id) ON UPDATE NO ACTION ON DELETE NO ACTION
61 );
62 alter table attribute_group_attribute add primary key (attributegroup_id, attribute_id);
63
64 /* PROFILE */
65
66 DROP TABLE IF EXISTS profile CASCADE;
67 CREATE TABLE profile (
68     id bigint NOT NULL PRIMARY KEY,
69     name varchar(255)
70 );
71
72 DROP TABLE IF EXISTS profile_attribute CASCADE;
73 CREATE TABLE profile_attribute (
74     id bigint NOT NULL PRIMARY KEY,
75     name varchar(255),
76     type varchar(255),
77     mandatory boolean,
78     profile_id bigint REFERENCES profile (id)
79 );
80
81 DROP TABLE IF EXISTS PROFILE_ATTRIBUTE_PROFILE CASCADE;
82 CREATE TABLE PROFILE_ATTRIBUTE_PROFILE (
83     profile_id bigint references profile(id) on update no action on delete no action,
84     profile_attribute_id references profile_attribute  on update no action on delete no action
85 );
86 alter table PROFILE_ATTRIBUTE_PROFILE add primary key (profile_id bigint, profile_attribute_id);
87
88 /* DATA */
89
90 DROP TABLE IF EXISTS gde_file CASCADE;
91 CREATE TABLE gde_file (
92     id bigint NOT NULL PRIMARY KEY,
93     name varchar(255),
94     length bigint,
95     checksum varchar(255),
96     creation_date timestamp,
97     update_date timestamp,
98     valid boolean,
99     deleted boolean,
100     deletion_date timestamp,
101     attribute_group_id bigint REFERENCES attribute_group (id),
102     data_profile_id bigint REFERENCES profile (id)
103 );
104
105 DROP TABLE IF EXISTS chunk CASCADE;
106 CREATE TABLE chunk (
107     id bigint NOT NULL PRIMARY KEY,
108     file_id bigint NOT NULL REFERENCES gde_file (id),
109     rank bigint,
110     checksum varchar(255),
111     size bigint,
112     data bytea
113 );
114
115 /* STUDIES */
116
117 DROP TABLE IF EXISTS study CASCADE;
118 CREATE TABLE study (
119     id bigint NOT NULL PRIMARY KEY,
120     name varchar(255),
121     creation_date timestamp,
122     update_date timestamp,
123     valid boolean,
124     deleted boolean,
125     deletion_date timestamp,
126     attribute_group_id bigint REFERENCES attribute_group (id),
127     profile_id bigint REFERENCES profile (id),
128     locked boolean
129 );
130 /* PROFILES */
131
132
133 -- The 1000 first ids are reserved for initial data
134 INSERT INTO users (id,username,userpassword) VALUES (1,'admin','edf123');
135 INSERT INTO group_ (id,groupname) VALUES (1,'admins');
136 INSERT into usergroup(id,groupid,userid) VALUES (2,1,1);
137 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (3, 1, 'UserService',1); -- Create user 
138 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (4, 1, 'UserService',2); -- Delete user
139 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (5, 1, 'UserService',3); -- Add to group
140 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (6, 1, 'UserService',4); -- Remove from group
141 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (7, 1, 'UserService',5); -- Create group
142 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (8, 1, 'UserService',6); -- Delete group
143 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (9, 1, 'UserService',7); -- Find user
144 INSERT INTO GROUPPERMISSIONS (id,groupid,servicename,methodindex) VALUES (10, 1, 'UserService',8); -- Find group
145
146