rename column in rails

 class ChangeUsersNameToTitle < ActiveRecord::Migration[6.0]

  def change
    rename_column :users, :name, :title
  end
end

## Rename column method
rename_column(:table_name, :column_name, :new_column_name)

Comments

Popular posts from this blog

Rails 7 Features :: Comparison with Rails 6 and Rails 5