blob: b552e853e25f734289bba8da4bff2b7f5a8b39b8 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddEmailConfirmedToUsers < ActiveRecord::Migration
def self.up
add_column :users, :email_confirmed, :boolean, :default => false
end
def self.down
remove_column :users, :email_confirmed
end
end
|