blob method
Add a blob column
Creates a blob column for binary data. Returns a SchemaUtils instance for adding constraints.
Implementation
SchemaUtils blob(String name) {
final column = SchemaUtils(" $name BLOB ");
_columns[name] = column;
return column;
}