1 2 3 4 5 6 7 8 9
class RemoveStateFromUser < ActiveRecord::Migration def up remove_column :users, :state end def down add_column :users, :state, :string end end