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
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;