hash method
Add a hash column
Creates a text column for storing hash values (e.g., SHA-256). Returns a SchemaUtils instance for adding constraints.
Implementation
SchemaUtils hash(String name, {int length = 64}) {
final column = varchar(name, length);
_columns[name] = column;
return column;
}