Answers for "how to change table name in ruby on rails"

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
2

edit column table ruby on rails

change_column :table, :column_name, :type, :whatever_here
Posted by: Guest on January-18-2021

Code answers related to "how to change table name in ruby on rails"

Browse Popular Code Answers by Language