change(column_name, type, options = {})
Instance Public methods
Changes the column's definition according to the new options. See ActiveRecord::ConnectionAdapters::TableDefinition#column for details of the options you can use.
t.change(:name, :string, limit: 80) t.change(:description, :text)
Please login to continue.