Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
fbebf395
Commit
fbebf395
authored
9 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
Task #8570: added many on delete cascade rules
parent
89eb5e57
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/ResourceAssignment/ResourceAllocationDatabase/sql/create_database.sql
+29
-27
29 additions, 27 deletions
...gnment/ResourceAllocationDatabase/sql/create_database.sql
with
29 additions
and
27 deletions
SAS/ResourceAssignment/ResourceAllocationDatabase/sql/create_database.sql
+
29
−
27
View file @
fbebf395
...
@@ -16,24 +16,26 @@ CREATE SCHEMA resource_allocation;
...
@@ -16,24 +16,26 @@ CREATE SCHEMA resource_allocation;
BEGIN
;
BEGIN
;
-- This is insanity, but works, order needs to be the reverse of the CREATE TABLE statements
-- This is insanity, but works, order needs to be the reverse of the CREATE TABLE statements
DROP
TABLE
IF
EXISTS
resource_allocation
.
config
;
DROP
VIEW
IF
EXISTS
resource_allocation
.
task_view
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_monitoring
.
resource_group_availability
;
DROP
VIEW
IF
EXISTS
resource_allocation
.
resource_claim_view
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_monitoring
.
resource_availability
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
config
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_monitoring
.
resource_capacity
;
DROP
TABLE
IF
EXISTS
resource_monitoring
.
resource_group_availability
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
resource_claim
;
DROP
TABLE
IF
EXISTS
resource_monitoring
.
resource_availability
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
resource_claim_status
;
DROP
TABLE
IF
EXISTS
resource_monitoring
.
resource_capacity
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
claim_session
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
resource_claim
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
task
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
resource_claim_status
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
specification
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
claim_session
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
task_type
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
task
CASCADE
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
task_status
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
specification
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_group_to_resource_group
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
task_type
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_to_resource_group
;
DROP
TABLE
IF
EXISTS
resource_allocation
.
task_status
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_group
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_group_to_resource_group
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_group_type
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_to_resource_group
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_group
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_type
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_group_type
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
unit
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
resource_type
CASCADE
;
DROP
TABLE
IF
EXISTS
virtual_instrument
.
unit
CASCADE
;
-- Would like to use this instead, but I can not get it to do something useful: SET CONSTRAINTS ALL DEFERRED;
-- Would like to use this instead, but I can not get it to do something useful: SET CONSTRAINTS ALL DEFERRED;
CREATE
TABLE
virtual_instrument
.
unit
(
CREATE
TABLE
virtual_instrument
.
unit
(
...
@@ -56,7 +58,7 @@ ALTER TABLE virtual_instrument.resource_type
...
@@ -56,7 +58,7 @@ ALTER TABLE virtual_instrument.resource_type
CREATE
TABLE
virtual_instrument
.
resource
(
CREATE
TABLE
virtual_instrument
.
resource
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
name
text
NOT
NULL
,
name
text
NOT
NULL
,
type_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_type
DEFERRABLE
INITIALLY
IMMEDIATE
,
type_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_type
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
PRIMARY
KEY
(
id
)
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
)
WITH
(
OIDS
=
FALSE
);
ALTER
TABLE
virtual_instrument
.
resource
ALTER
TABLE
virtual_instrument
.
resource
...
@@ -73,7 +75,7 @@ ALTER TABLE virtual_instrument.resource_group_type
...
@@ -73,7 +75,7 @@ ALTER TABLE virtual_instrument.resource_group_type
CREATE
TABLE
virtual_instrument
.
resource_group
(
CREATE
TABLE
virtual_instrument
.
resource_group
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
name
text
NOT
NULL
,
name
text
NOT
NULL
,
type_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_group_type
DEFERRABLE
INITIALLY
IMMEDIATE
,
type_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_group_type
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
PRIMARY
KEY
(
id
)
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
)
WITH
(
OIDS
=
FALSE
);
ALTER
TABLE
virtual_instrument
.
resource_group
ALTER
TABLE
virtual_instrument
.
resource_group
...
@@ -81,8 +83,8 @@ ALTER TABLE virtual_instrument.resource_group
...
@@ -81,8 +83,8 @@ ALTER TABLE virtual_instrument.resource_group
CREATE
TABLE
virtual_instrument
.
resource_to_resource_group
(
CREATE
TABLE
virtual_instrument
.
resource_to_resource_group
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
child_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
DEFERRABLE
INITIALLY
IMMEDIATE
,
child_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
parent_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_group
DEFERRABLE
INITIALLY
IMMEDIATE
,
parent_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_group
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
PRIMARY
KEY
(
id
)
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
)
WITH
(
OIDS
=
FALSE
);
ALTER
TABLE
virtual_instrument
.
resource_to_resource_group
ALTER
TABLE
virtual_instrument
.
resource_to_resource_group
...
@@ -90,8 +92,8 @@ ALTER TABLE virtual_instrument.resource_to_resource_group
...
@@ -90,8 +92,8 @@ ALTER TABLE virtual_instrument.resource_to_resource_group
CREATE
TABLE
virtual_instrument
.
resource_group_to_resource_group
(
CREATE
TABLE
virtual_instrument
.
resource_group_to_resource_group
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
child_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_group
DEFERRABLE
INITIALLY
IMMEDIATE
,
child_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource_group
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
parent_id
integer
REFERENCES
virtual_instrument
.
resource_group
DEFERRABLE
INITIALLY
IMMEDIATE
,
parent_id
integer
REFERENCES
virtual_instrument
.
resource_group
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
PRIMARY
KEY
(
id
)
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
)
WITH
(
OIDS
=
FALSE
);
ALTER
TABLE
virtual_instrument
.
resource_group_to_resource_group
ALTER
TABLE
virtual_instrument
.
resource_group_to_resource_group
...
@@ -156,7 +158,7 @@ ALTER TABLE resource_allocation.resource_claim_status
...
@@ -156,7 +158,7 @@ ALTER TABLE resource_allocation.resource_claim_status
CREATE
TABLE
resource_allocation
.
resource_claim
(
CREATE
TABLE
resource_allocation
.
resource_claim
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
resource_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
DEFERRABLE
INITIALLY
IMMEDIATE
,
resource_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
task_id
integer
NOT
NULL
REFERENCES
resource_allocation
.
task
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
task_id
integer
NOT
NULL
REFERENCES
resource_allocation
.
task
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
starttime
timestamp
NOT
NULL
,
starttime
timestamp
NOT
NULL
,
endtime
timestamp
NOT
NULL
,
endtime
timestamp
NOT
NULL
,
...
@@ -172,7 +174,7 @@ ALTER TABLE resource_allocation.resource_claim
...
@@ -172,7 +174,7 @@ ALTER TABLE resource_allocation.resource_claim
CREATE
TABLE
resource_monitoring
.
resource_capacity
(
CREATE
TABLE
resource_monitoring
.
resource_capacity
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
resource_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
DEFERRABLE
INITIALLY
IMMEDIATE
,
resource_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
available
bigint
NOT
NULL
,
available
bigint
NOT
NULL
,
total
bigint
NOT
NULL
,
total
bigint
NOT
NULL
,
PRIMARY
KEY
(
id
)
PRIMARY
KEY
(
id
)
...
@@ -182,7 +184,7 @@ ALTER TABLE resource_monitoring.resource_capacity
...
@@ -182,7 +184,7 @@ ALTER TABLE resource_monitoring.resource_capacity
CREATE
TABLE
resource_monitoring
.
resource_availability
(
CREATE
TABLE
resource_monitoring
.
resource_availability
(
id
serial
NOT
NULL
,
id
serial
NOT
NULL
,
resource_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
DEFERRABLE
INITIALLY
IMMEDIATE
,
resource_id
integer
NOT
NULL
REFERENCES
virtual_instrument
.
resource
ON
DELETE
CASCADE
DEFERRABLE
INITIALLY
IMMEDIATE
,
available
bool
NOT
NULL
,
available
bool
NOT
NULL
,
PRIMARY
KEY
(
id
)
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
)
WITH
(
OIDS
=
FALSE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment