20150113213922_remove_users_mail.rb
13 lines
| 342 B
| text/x-ruby
|
RubyLexer
|
r13504 | class RemoveUsersMail < ActiveRecord::Migration | ||
def self.up | ||||
remove_column :users, :mail | ||||
end | ||||
def self.down | ||||
|
r13670 | add_column :users, :mail, :string, :limit => 60, :default => '', :null => false | ||
EmailAddress.where(:is_default => true).each do |a| | ||||
User.where(:id => a.user_id).update_all(:mail => a.address) | ||||
end | ||||
|
r13504 | end | ||
end | ||||