blob: 487aa49d02901dad7bb193a56066cbcbf4955b62 [file] [log] [blame]
ChrisC5e9feb22017-06-21 02:38:57 -07001#
2# Drop CLDS database objects (tables, etc.)
3#
4#
5
6
7ALTER TABLE template
8 DROP FOREIGN KEY template_image_id_fkey01;
9ALTER TABLE template
10 DROP FOREIGN KEY template_bpmn_id_fkey01;
11ALTER TABLE template
12 DROP FOREIGN KEY template_doc_id_fkey01;
13
14ALTER TABLE model
15 DROP FOREIGN KEY template_id_fkey01;
16ALTER TABLE model
17 DROP FOREIGN KEY model_prop_id_fkey01;
18ALTER TABLE model
19 DROP FOREIGN KEY model_blueprint_id_fkey01;
20ALTER TABLE model
21 DROP FOREIGN KEY event_id_fkey01;
22
23DROP TABLE model_instance;
24DROP TABLE model_blueprint;
25DROP TABLE model_properties;
26DROP TABLE event;
27DROP TABLE model;
28
29DROP TABLE template_doc;
30DROP TABLE template_image;
31DROP TABLE template_bpmn;
32DROP TABLE template;