diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2023-03-09 17:26:34 +0000 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2023-03-10 14:20:56 +0000 |
commit | e2e5e5337f65b49aef56d4bced4ca9e298825543 (patch) | |
tree | 0362b3247cd122e35076fc75498f1be19eac1a4a /integration-test/src | |
parent | 0fd4d19468d17468de435bca9ba121670159b5d0 (diff) |
Add schema_set_yang_resources index to tests
- Add missing index to liquibase test-changelog.yaml
Issue-ID: CPS-1535
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I2f8ee9f66b3f433be2f61e17759f0f6c9f2e4707
Diffstat (limited to 'integration-test/src')
-rw-r--r-- | integration-test/src/test/resources/liquibase/test-changelog.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/integration-test/src/test/resources/liquibase/test-changelog.yaml b/integration-test/src/test/resources/liquibase/test-changelog.yaml index 47d99072c3..8b7422ce54 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 |