Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
From http://liquibase.org/forum/index.php?topic=81.0
I'm using liquibase 1.9.3 against Oracle XE.
When I try to add a new column to an existing table, the remarks attribute value is not inserted as column comment. I'm using the following syntax:
<changeSet author="rbijkerk" id="1">
<addColumn tableName="some_table">
<column name="some_column" type="number(14,0)" remarks="Meaningful comment about this column"/>
</addColumn>
</changeSet>