Remove email column and index. Fix schema.
[b4.git] / db / migrate / 20121125014228_remove_column_users_email.rb
blobadd32be683724a8c6737d165e98027d3d631b79e
1 class RemoveColumnUsersEmail < ActiveRecord::Migration
2   def up
3     remove_column :users, :email
4   end
6   def down
7     add_column :users, :email, :string
8   end
9 end