Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
13
db/migrate/20150113213922_remove_users_mail.rb
Normal file
13
db/migrate/20150113213922_remove_users_mail.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
class RemoveUsersMail < ActiveRecord::Migration
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue