comment method
Add COMMENT modifier
Adds a comment describing the column.
comment
should be a descriptive string.
Implementation
SchemaUtils comment(String comment) {
_constraints.add("COMMENT '$comment'");
return this;
}
Add COMMENT modifier
Adds a comment describing the column.
comment
should be a descriptive string.
SchemaUtils comment(String comment) {
_constraints.add("COMMENT '$comment'");
return this;
}