Answers for "rails rename column name migration"

3

how to I change the name of a column in rails

$ rails g migration rename_season_to_season_id

class RenameSeasonToSeasonId < ActiveRecord::Migration
  def change
    rename_column :shoes, :season, :season_id
  end
end
Posted by: Guest on February-14-2020
0

How can I rename a database column in a Ruby on Rails migration?

rails generate migration rename_title_to_name_in_tasks

class RenameTitleToNameInTasks < ActiveRecord::Migration[6.0]
  def change
    rename_column :tasks, :title, :name
  end
end
Posted by: Guest on December-10-2021

Code answers related to "rails rename column name migration"

Browse Popular Code Answers by Language