How do you write a migration to rename an ActiveRecord model and its table in Rails?

前端 未结 5 1304
忘掉有多难
忘掉有多难 2020-11-29 14:56

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

相关标签:
5条回答
  • 2020-11-29 15:27

    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
    

    I had to go and rename the model declaration file manually.

    Edit:

    In Rails 3.1 & 4, ActiveRecord::Migration::CommandRecorder knows how to reverse rename_table migrations, so you can do this:

    class RenameOldTableToNewTable < ActiveRecord::Migration
      def change
        rename_table :old_table_name, :new_table_name
      end 
    end
    

    (You still have to go through and manually rename your files.)

    0 讨论(0)
  • 2020-11-29 15:29

    The other answers and comments covered table renaming, file renaming, and grepping through your code.

    I'd like to add a few more caveats:

    Let's use a real-world example I faced today: renaming a model from 'Merchant' to 'Business.'

    • Don't forget to change the names of dependent tables and models in the same migration. I changed my Merchant and MerchantStat models to Business and BusinessStat at the same time. Otherwise I'd have had to do way too much picking and choosing when performing search-and-replace.
    • For any other models that depend on your model via foreign keys, the other tables' foreign-key column names will be derived from your original model name. So you'll also want to do some rename_column calls on these dependent models. For instance, I had to rename the 'merchant_id' column to 'business_id' in various join tables (for has_and_belongs_to_many relationship) and other dependent tables (for normal has_one and has_many relationships). Otherwise I would have ended up with columns like 'business_stat.merchant_id' pointing to 'business.id'. Here's a good answer about doing column renames.
    • When grepping, remember to search for singular, plural, capitalized, lowercase, and even UPPERCASE (which may occur in comments) versions of your strings.
    • It's best to search for plural versions first, then singular. That way if you have an irregular plural - such as in my merchants :: businesses example - you can get all the irregular plurals correct. Otherwise you may end up with, for example, 'businesss' (3 s's) as an intermediate state, resulting in yet more search-and-replace.
    • Don't blindly replace every occurrence. If your model names collide with common programming terms, with values in other models, or with textual content in your views, you may end up being too over-eager. In my example, I wanted to change my model name to 'Business' but still refer to them as 'merchants' in the content in my UI. I also had a 'merchant' role for my users in CanCan - it was the confusion between the merchant role and the Merchant model that caused me to rename the model in the first place.
    0 讨论(0)
  • 2020-11-29 15:33

    In Rails 4 all I had to do was the def change

    def change
      rename_table :old_table_name, :new_table_name
    end
    

    And all of my indexes were taken care of for me. I did not need to manually update the indexes by removing the old ones and adding new ones.

    And it works using the change for going up or down in regards to the indexes as well.

    0 讨论(0)
  • 2020-11-29 15:40

    You also need to replace your indexes:

    class RenameOldTableToNewTable< ActiveRecord:Migration
      def self.up
        remove_index :old_table_name, :column_name
        rename_table :old_table_name, :new_table_name
        add_index :new_table_name, :column_name
      end 
    
      def self.down
        remove_index :new_table_name, :column_name
        rename_table :new_table_name, :old_table_name
        add_index :old_table_name, :column_name
      end
    end
    

    And rename your files etc, manually as other answers here describe.

    See: http://api.rubyonrails.org/classes/ActiveRecord/Migration.html

    Make sure you can rollback and roll forward after you write this migration. It can get tricky if you get something wrong and get stuck with a migration that tries to effect something that no longer exists. Best trash the whole database and start again if you can't roll back. So be aware you might need to back something up.

    Also: check schema_db for any relevant column names in other tables defined by a has_ or belongs_to or something. You'll probably need to edit those too.

    And finally, doing this without a regression test suite would be nuts.

    0 讨论(0)
  • 2020-11-29 15:41

    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}

    0 讨论(0)
提交回复
热议问题