X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=cps-ri%2Fsrc%2Fmain%2Fresources%2Fchangelog%2Fdb%2Fchanges%2F05-loadData-fragment.yaml;h=bd95a00e37222d7ed12860017176eb59c473df2b;hb=refs%2Fchanges%2F99%2F127499%2F2;hp=d1125f8c8a0e06b06857262b6f15be24f457e8ac;hpb=df4ca87b955e54180046b25294913b5fca5a1270;p=cps.git diff --git a/cps-ri/src/main/resources/changelog/db/changes/05-loadData-fragment.yaml b/cps-ri/src/main/resources/changelog/db/changes/05-loadData-fragment.yaml index d1125f8c8..bd95a00e3 100644 --- a/cps-ri/src/main/resources/changelog/db/changes/05-loadData-fragment.yaml +++ b/cps-ri/src/main/resources/changelog/db/changes/05-loadData-fragment.yaml @@ -1,5 +1,5 @@ # ============LICENSE_START======================================================= -# Copyright (C) 2021 Nordix Foundation +# Copyright (C) 2021-2022 Nordix Foundation # Modifications Copyright (C) 2021 Pantheon.tech # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); @@ -69,3 +69,16 @@ databaseChangeLog: comment: Fixes the id sequence after data insert with predefined ids dbms: postgresql sql: ALTER SEQUENCE IF EXISTS fragment_id_seq RESTART WITH 200 + + - changeSet: + author: cps + label: dmi-registry-schema-preload + id: 5.2 + changes: + - sql: + comment: Sets sequence value to current max value of the ID from the fragment table + dbms: postgresql + sql: SELECT setval('fragment_id_seq', (SELECT MAX(ID) FROM fragment)) + rollback: + sql: SELECT setval('fragment_id_seq', 200) + comment: Rollback Sequence to restart with the sequence number in the last changeset \ No newline at end of file