Is this a valid changeset:
- changeSet:
id: 2026.05.18.090100-001
author: nowhere man
dbms: oracle
comment: Load Table
changes:
- tagDatabase:
tag: 2026.05.18.090100-001
- sqlFile:
endDelimiter: '/'
encodig: UTF-8
...
So this changeset includes the tagDatabase und the sqlFile change type.
The update command works fine, but the rollback to tag 2026.05.18.090100-001 contains all changes after this tag, the tag himself is not included.
Now I’m trying a different one
- changeSet:
id: 2026.05.18.090100-001
author: nowhere man
dbms: oracle
comment: Load Table
changes:
- tagDatabase:
tag: 2026.05.18.090100-001
- changeSet:
id: 2026.05.18.090100-001
author: nowhere man
dbms: oracle
comment: Load Table
changes:
- sqlFile:
endDelimiter: '/'
encodig: UTF-8
...
In my opinion, it’s the same procedure, but the rollback to tag 2026.05.18.090100-001 contains all changes after this tag, the tag himself is also included.
What am I overlooking?
Thanks
andreas