diff options
author | Dan Timoney <dtimoney@att.com> | 2018-10-05 19:09:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-05 19:09:14 +0000 |
commit | 20834e759cce4aa8ceeae485ffdf4b6ca9a19cdf (patch) | |
tree | 217f558555d73c365c4ee349e64122d6c47ad185 /installation | |
parent | eb1f322f42d2b932bdbdf623b21845b52e229572 (diff) | |
parent | 3259378d1c88bf089ca93e0758324cbc809e4771 (diff) |
Merge "Fix for a foreign key constraint fails"
Former-commit-id: 07bc20284996d59ba581afe3ff9b6306cd5ea579
Diffstat (limited to 'installation')
-rw-r--r-- | installation/sdnc/src/main/resources/blueprint-processor.data.dump | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/installation/sdnc/src/main/resources/blueprint-processor.data.dump b/installation/sdnc/src/main/resources/blueprint-processor.data.dump index 9a4bd3f0..5fd53cbd 100644 --- a/installation/sdnc/src/main/resources/blueprint-processor.data.dump +++ b/installation/sdnc/src/main/resources/blueprint-processor.data.dump @@ -2,11 +2,14 @@ -- Dropping tables ( One time ) -- ----------------------------------------------------- +SET FOREIGN_KEY_CHECKS=0; + DROP TABLE sdnctl.CONFIG_RESOURCE_ASSIGNMENT_DATA; DROP TABLE sdnctl.CONFIG_RESOURCE; DROP TABLE sdnctl.CONFIG_RESOURCE_RELATION; -DROP TABLE sdnctl.CONFIG_TRANSACTION_LOG +DROP TABLE sdnctl.CONFIG_TRANSACTION_LOG; +SET FOREIGN_KEY_CHECKS=1; -- ----------------------------------------------------- -- table sdnctl.CONFIG_TRANSACTION_LOG |