FInd list of all available tags

Context: After every update I tag the database so that I can rollback to that tag in future.
My query is: Is there any way to get list of all available tags?
Thank you

There isn’t a liquibase command to list tags, but you can run this query in your database:

select dateexecuted,tag from databasechangelog where tag is not null;

2 Likes

Why the history command doesn’t show the tags ?
I don’t really understand, why we should directly access the internal liquibase table to know this information.