I\'m terrible at naming and realize that there are a better set of names for my models in my Rails app. Is there any way to use a migration to rename a model and its cor
You can do execute this command : rails g migration rename_{old_table_name}to{new_table_name}
after you edit the file and add this code in the method change
rename_table :{old_table_name}, :{new_table_name}