Search code examples
ruby-on-railsrails-activerecord

How to change a table name?


I am new to Rails. Facing issue while changing table name.

I tried changing the name by going to create_table migration file and changed name from there but it didn't work.


Solution

  • You can create a new migration file for changing the table name and use rename_table command like this:

    rename_table :old_name, :new_name