change method

ColumnBuilder change()

Marks the column command as an alteration (e.g. $table->string(...)->change()).

Implementation

ColumnBuilder change() {
  _entry.markAsAlter();
  return this;
}