decimal function
An exact decimal 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<Decimal> decimal({
String? name,
bool unique = false,
String? defaultSql,
Decimal Function()? clientDefault,
int? precision,
int? scale,
}) => const ColumnDefinition._();