I am trying to create tag of database whenever any data is updated on database with liquibase command.
Does liquibase support tagging in SQL format changeset?
Please find the content of the .sql changeset:
--liquibase formatted sql
--changeset anant:1585068371411-1
CREATE TABLE service_request1 (id BIGINT AUTO_INCREMENT NOT NULL, request_id VARCHAR(45) NOT NULL, input_json MEDIUMTEXT NULL, output_json MEDIUMTEXT NULL, created_date timestamp DEFAULT NOW() NULL, modified_date timestamp DEFAULT NOW() NULL, cal_version_no VARCHAR(45) NULL, CONSTRAINT PK_SERVICE_REQUEST PRIMARY KEY (id));
--rollback drop table service_request1
Note:I am doing this to integrate with Bamboo for CI/CD.