I wrongly named a column hased_password instead of hashed_password.
How can I use a migration to rename this column?
|
I wrongly named a column How can I use a migration to rename this column? |
||||
|
|
Update: You'll probably want to create a separate migration to do this. (Rename FixColumnName as you will)
Then edit the migration to do your will.
An update for Rails 3.1 While, the
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.
You could use
Thank you, Then just |
|||||||||||||||||
|
|
imo in this case better use |
|||||||||
|
|
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. |
|||
|
|
|
From API:
|
|||
|
|
|
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) |
|||
|
|