blob: 4f6f3bb28e90361cc95f740188f09811d950c95f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# frozen_string_literal: false
class RemoveUsersMail < ActiveRecord::Migration[4.2]
def self.up
remove_column :users, :mail
end
def self.down
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
end
end
|