comment method

SchemaUtils comment(
  1. String comment
)

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;
}