Hi Nathan,
I checked the jira ticket related to this, it seems it has been
fixed in liquibase version 3.2.0, however I am not able to add comment
via my formatted sql. Any ideas/sugestions?
Here's how my formatted sql looks like:
--liquibase formatted sql
--changeset ascii:001
--comment CREATE TABLE
create table ascii (
id int primary key,
name varchar(255)
);
--rollback drop table ascii;
--changeset ascii:002
--comment INSERT TABLE
insert into ascii (id, name) values (1, 'first');
insert into ascii (id, name) values (2, 'second');
insert into ascii (id, name) values (3, 'third');
Am i missing something? I am running liquibase version 3.2.0.