Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wrongly named a column hased_password instead of hashed_password.

How can I use a migration to rename this column?

share|improve this question

5 Answers

up vote 564 down vote accepted
rename_column :table, :old_column, :new_column

Update:

You'll probably want to create a separate migration to do this. (Rename FixColumnName as you will)

script/generate migration FixColumnName
# creates  db/migrate/xxxxxxxxxx_fix_column_name.rb

Then edit the migration to do your will.

# db/migrate/xxxxxxxxxx_fix_column_name.rb
class FixColumnName < ActiveRecord::Migration
  def self.up
    rename_column :table_name, :old_column, :new_column
  end

  def self.down
    # rename back if you need or do something else or do nothing
  end
end

An update for Rails 3.1

While, the up and down methods still apply. Rails 3.1 receives a change method that "knows how to migrate your database and reverse it when the migration is rolled back without the need to write a separate down method"

rails g migration FixColumnName

class FixColumnName < ActiveRecord::Migration
  def change
    rename_column :table_name, :old_column, :new_column
  end
end

If you happen to have a whole bunch of columns to rename, or something that would have required repeating the table name over and over again.

rename_column :table_name, :old_column1, :new_column1
rename_column :table_name, :old_column2, :new_column2
...

You could use change_table to keep things a little neater.

class FixColumnNames < ActiveRecord::Migration
  def change
    change_table :table_name do |t|
      t.rename :old_column1, :new_column1
      t.rename :old_column2, :new_column2
      ...
    end
  end
end

Thank you, Luke && Turadg, for bringing up the topic.


Then just db:migrate as usual or however you go about your business.

share|improve this answer
3  
Thanks! Can I know how do I make use of this command? Do I need to add any code to the migration file or there is a command that I need to execute from terminal? Thanks – user1994764 Jan 2 '10 at 16:36
I put up a quick example for you. – kwon Jan 2 '10 at 17:13
Many thanks for this! – AlexC Sep 25 '10 at 1:45
2  
self.down should always be the opposite of self.up, so "if you need or do something else or do nothing" isn't really recommended. Just do: rename_column :table_name, :new_column, :old_column – Luke Griffiths Aug 29 '11 at 15:21
4  
In Rails 3.1 you can replace def self.up and def self.down with def change and it'll know how to rollback. – Turadg Sep 9 '11 at 21:57
show 1 more comment

imo in this case better use rake db:rollback. Then edit your migration and again type rake db:migrate. However, if you have data in the column you don't want to lose, then use rename_column.

share|improve this answer
12  
This idea doesn't work if the migration has already been run by other people. – Ash Berlin May 9 '11 at 16:04
Thanks for the info that rename_column will not loose existing data – Sudhakar R Jan 10 '12 at 4:18
On anything but a "team of one" you should NEVER edit existing migrations! – Dave Collins Jan 8 at 0:08

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

Under "Available Transformations"

rename_column(table_name, column_name, new_column_name): Renames a column but keeps the type and content.

share|improve this answer

From API: rename_column(table_name, column_name, new_column_name): Renames a column but keeps the type and content.

share|improve this answer

As an alternative option, if you are not married to the idea of migrations, there is a compelling gem for ActiveRecord which will handle the name changes automatically for you, Datamapper style. All you do is change the column name in your model (and make sure you put Model.auto_upgrade! at the bottom of your model.rb) and viola! Database is updated on the fly.

https://github.com/DAddYE/mini_record

Note: You will need to nuke db/schema.rb to prevent conflicts

Still in beta phases and obviously not for everyone but still a compelling choice (I am currently using it in two non-trivial production apps with no issues)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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