text function

ColumnDefinition<String> text({
  1. String? name,
  2. bool unique = false,
  3. String? defaultValue,
  4. String? defaultSql,
  5. String clientDefault()?,
})

A text column.

name fixes the physical column name; otherwise snake_case is derived from the Record field. defaultSql is trusted database SQL. clientDefault runs only for omitted insert values and may coexist with a database default.

Implementation

ColumnDefinition<String> text({
  String? name,
  bool unique = false,
  String? defaultValue,
  String? defaultSql,
  String Function()? clientDefault,
}) => const ColumnDefinition._();