I need a list of common data types available in Liquibase. Where can I find them in the documentation.
I need them when adding columns to the table:
<changeSet author="liquibase-docs" id="addColumn-example"> <addColumn catalogName="cat" schemaName="public" tableName="person"> <column name="address" type="varchar(255)"/> </addColumn> </changeSet>
liquibase
Bart weber
source share