Skip to content
Snippets Groups Projects
Commit 76b9557d authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #8570: resource_allocation.specification ON DELETE CASCADE

parent 992c11eb
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ CREATE TABLE resource_allocation.task (
otdb_id integer,
status_id integer NOT NULL REFERENCES resource_allocation.task_status DEFERRABLE INITIALLY IMMEDIATE,
type_id integer NOT NULL REFERENCES resource_allocation.task_type DEFERRABLE INITIALLY IMMEDIATE,
specification_id integer NOT NULL REFERENCES resource_allocation.specification DEFERRABLE INITIALLY IMMEDIATE,
specification_id integer NOT NULL REFERENCES resource_allocation.specification ON DELETE CASCADE DEFERRABLE INITIALLY IMMEDIATE,
PRIMARY KEY (id)
) WITH (OIDS=FALSE);
ALTER TABLE resource_allocation.task
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment