Set remarks on a column
Name | Description |
---|---|
catalogName | Name of the catalogSupported by: asany, db2, db2z, h2, mariadb, mysql, oracle, postgresqlE.g. 'cat' |
columnName | Name of the columnE.g. 'id' |
remarks | Comment to set on the columnE.g. 'A String' |
schemaName | Name of the schemaE.g. 'public' |
tableName | Name of the tableE.g. 'person' |
<changeSet author="liquibase-docs" id="setColumnRemarks-example">
<setColumnRemarks catalogName="cat"
columnName="id"
remarks="A String"
schemaName="public"
tableName="person"/>
</changeSet>
changeSet:
id: setColumnRemarks-example
author: liquibase-docs
changes:
- setColumnRemarks:
catalogName: cat
columnName: id
remarks: A String
schemaName: public
tableName: person
{
"changeSet": {
"id": "setColumnRemarks-example",
"author": "liquibase-docs",
"changes": [
{
"setColumnRemarks": {
"catalogName": "cat",
"columnName": "id",
"remarks": "A String",
"schemaName": "public",
"tableName": "person"
}
}]
}
}
ALTER TABLE cat.person COMMENT = 'A String';
Database | Notes | Auto Rollback |
---|---|---|
DB2/LUW | Supported | No |
DB2/z | Supported | No |
Derby | Not Supported | No |
Firebird | Not Supported | No |
H2 | Supported | No |
HyperSQL | Not Supported | No |
INGRES | Not Supported | No |
Informix | Not Supported | No |
MariaDB | Supported | No |
MySQL | Supported | No |
Oracle | Supported | No |
PostgreSQL | Supported | No |
SQL Server | Supported | No |
SQLite | Not Supported | No |
Sybase | Not Supported | No |
Sybase Anywhere | Supported | No |