blob: 478eaf0e099b78fdbd766881cebcd04860616988 [file] [log] [blame]
ChrisC5e9feb22017-06-21 02:38:57 -07001#
Determe, Sebastien (sd378r)b3a21f72017-08-08 02:58:27 -07002# Drop CLDS database objects (tables, etc.)
ChrisC5e9feb22017-06-21 02:38:57 -07003#
4
5
6ALTER TABLE template
7 DROP FOREIGN KEY template_image_id_fkey01;
8ALTER TABLE template
9 DROP FOREIGN KEY template_bpmn_id_fkey01;
10ALTER TABLE template
11 DROP FOREIGN KEY template_doc_id_fkey01;
Determe, Sebastien (sd378r)b3a21f72017-08-08 02:58:27 -070012
ChrisC5e9feb22017-06-21 02:38:57 -070013ALTER TABLE model
14 DROP FOREIGN KEY template_id_fkey01;
15ALTER TABLE model
16 DROP FOREIGN KEY model_prop_id_fkey01;
17ALTER TABLE model
18 DROP FOREIGN KEY model_blueprint_id_fkey01;
19ALTER TABLE model
20 DROP FOREIGN KEY event_id_fkey01;
21
Determe, Sebastien (sd378r)b3a21f72017-08-08 02:58:27 -070022DROP TABLE clds_service_cache;
23
ChrisC5e9feb22017-06-21 02:38:57 -070024DROP TABLE model_instance;
25DROP TABLE model_blueprint;
26DROP TABLE model_properties;
27DROP TABLE event;
28DROP TABLE model;
29
30DROP TABLE template_doc;
31DROP TABLE template_image;
32DROP TABLE template_bpmn;
33DROP TABLE template;