From: danielhanrahan Date: Thu, 9 Mar 2023 17:26:34 +0000 (+0000) Subject: Add schema_set_yang_resources index to tests X-Git-Tag: 3.2.6~20 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e2e5e5337f65b49aef56d4bced4ca9e298825543;p=cps.git Add schema_set_yang_resources index to tests - Add missing index to liquibase test-changelog.yaml Issue-ID: CPS-1535 Signed-off-by: danielhanrahan Change-Id: I2f8ee9f66b3f433be2f61e17759f0f6c9f2e4707 --- diff --git a/integration-test/src/test/resources/liquibase/test-changelog.yaml b/integration-test/src/test/resources/liquibase/test-changelog.yaml index 47d99072c..8b7422ce5 100644 --- a/integration-test/src/test/resources/liquibase/test-changelog.yaml +++ b/integration-test/src/test/resources/liquibase/test-changelog.yaml @@ -600,3 +600,18 @@ databaseChangeLog: rollback: - sql: sql: alter table yang_resource rename column file_name to name + + - changeSet: + author: cps + id: 1-41 + changes: + - createIndex: + columns: + - column: + name: schema_set_id + indexName: FKI_SCHEMA_SET_YANG_RESOURCES_SCHEMA_SET_ID_FK + tableName: schema_set_yang_resources + rollback: + - dropIndex: + indexName: FKI_SCHEMA_SET_YANG_RESOURCES_SCHEMA_SET_ID_FK + tableName: schema_set_yang_resources