vote up 6 vote down star
1

I'm terrible at naming and realize that there are a better set of names for my models in my Rails app. Is there a way to use a migration to rename a model and its table?

flag

I suggested adding "ActiveRecord" to this question to improve search engine matches. I've been looking for this using "ActiveRecord rename table". – landon9720 Nov 3 at 23:04

1 Answer

vote up 8 vote down check

Found the answer at http://dizzy.co.uk/ruby_on_rails/cheatsheets/rails-migrations#rename_table.

Here's an example:

class RenameOldTableToNewTable< ActiveRecord:Migration
    def self.up
        rename_table :old_table_name, :new_table_name
    end 
    def self.down
        rename_table :new_table_name, :old_table_name
    end
 end
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.