from method

ColumnDefinition from(
  1. String oldName
)

Rename the column from an old name (used in migrations).

Implementation

ColumnDefinition from(String oldName) {
  _oldName = oldName;
  return this;
}