Answers for "how to rename table name in rails"

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
1

how to rename a table in ruby

class RenameOldTableToNewTable < ActiveRecord::Migration
   def change
     rename_table :old_table_name, :new_table_name
   end 
 end
Posted by: Guest on February-14-2020

Code answers related to "how to rename table name in rails"

Browse Popular Code Answers by Language