X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=extra%2Fsql%2Fdrop%2Fclds-drop-db-objects.sql;fp=extra%2Fsql%2Fdrop%2Fclds-drop-db-objects.sql;h=487aa49d02901dad7bb193a56066cbcbf4955b62;hb=5e9feb2a8e360b82dc2b6e4145e0fd847d2924ce;hp=0000000000000000000000000000000000000000;hpb=4d8ae6fe89a9ed6cd9a64c3276d2dc5a48bbcc34;p=clamp.git diff --git a/extra/sql/drop/clds-drop-db-objects.sql b/extra/sql/drop/clds-drop-db-objects.sql new file mode 100644 index 00000000..487aa49d --- /dev/null +++ b/extra/sql/drop/clds-drop-db-objects.sql @@ -0,0 +1,32 @@ +# +# Drop CLDS database objects (tables, etc.) +# +# + + +ALTER TABLE template + DROP FOREIGN KEY template_image_id_fkey01; +ALTER TABLE template + DROP FOREIGN KEY template_bpmn_id_fkey01; +ALTER TABLE template + DROP FOREIGN KEY template_doc_id_fkey01; + +ALTER TABLE model + DROP FOREIGN KEY template_id_fkey01; +ALTER TABLE model + DROP FOREIGN KEY model_prop_id_fkey01; +ALTER TABLE model + DROP FOREIGN KEY model_blueprint_id_fkey01; +ALTER TABLE model + DROP FOREIGN KEY event_id_fkey01; + +DROP TABLE model_instance; +DROP TABLE model_blueprint; +DROP TABLE model_properties; +DROP TABLE event; +DROP TABLE model; + +DROP TABLE template_doc; +DROP TABLE template_image; +DROP TABLE template_bpmn; +DROP TABLE template;