I can not add comments on tables or fields using Firebird database.
Firebird: 2.5
jdbc: Jaybird-full-2.2.8
liquibase: 3.4.2
OS: Windows
PostgreSQL 9.x it works...
Example:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog .....>
<changeSet id="1" author="dev">
<createTable tableName="remarks"
remarks="remarks of table">
<column name="id" type="numeric(3,0)" remarks="remarks of column">
<constraints nullable="false" />
</column>
</createTable>
</changeSet>
</databaseChangeLog>
The liquibase log not shows errors:
logLevel: debug
Computed checksum for createTable:[
columns=[
[
[
nullable="false"
]
name="id"
remarks="remarks of column"
type="numeric(3,0)"
]
]
remarks="remarks of table"
tableName="remarks"
] as 7fd0f275743adef293d26b84f8aaba4d
INFO 08/03/16 16:40: liquibase: Successfully released change log lock
Liquibase Update Successful
Firebird: 2.5
jdbc: Jaybird-full-2.2.8
liquibase: 3.4.2
OS: Windows
PostgreSQL 9.x it works...
Example:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog .....>
<changeSet id="1" author="dev">
<createTable tableName="remarks"
remarks="remarks of table">
<column name="id" type="numeric(3,0)" remarks="remarks of column">
<constraints nullable="false" />
</column>
</createTable>
</changeSet>
</databaseChangeLog>
The liquibase log not shows errors:
logLevel: debug
Computed checksum for createTable:[
columns=[
[
[
nullable="false"
]
name="id"
remarks="remarks of column"
type="numeric(3,0)"
]
]
remarks="remarks of table"
tableName="remarks"
] as 7fd0f275743adef293d26b84f8aaba4d
INFO 08/03/16 16:40: liquibase: Successfully released change log lock
Liquibase Update Successful