columnDefinition method

String columnDefinition()

Implementation

String columnDefinition() {
  return '`${name}` ${_getType()} ${_allowNull ? "" : "NOT NULL"} ${_unique ? "UNIQUE" : ""} ${_defaultValue == null ? "" : "DEFAULT " + _defaultValue!.toSql(null)}';
}