float method
Create a float column
Implementation
ColumnDefinition float(String name, {int? precision, int? scale}) {
String type = 'FLOAT';
if (precision != null && scale != null) {
type = 'FLOAT($precision,$scale)';
}
return ColumnDefinition(this, name, type);
}