I run:
rails generate migration AddShowmsgColumnToPublishers show_msg:boolean
rake db:migrate
but now, I want to change the name of the column to "hide_msg" and set a default value by false.
How can I do that please?
I read that I have to do something like:
first step:
rails generate migration FixColumnName
class FixColumnName < ActiveRecord::Migration
def change
rename_column :publishers, :show_msg, :hide_msg
end
end
second step:
rails generate migration add_default_value_to_hide_msg
third step: edit the file into:
def up
change_column :profiles, :show_attribute, :boolean, :default => false
end
def down
change_column :profiles, :show_attribute, :boolean, :default => nil
end
and finally:
rake db:migrate
but is there no other way with one command?
