1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-10-17 17:01:01 +00:00
redmine/db/migrate/20150113213922_remove_users_mail.rb
2015-01-17 14:14:12 +00:00

10 lines
159 B
Ruby

class RemoveUsersMail < ActiveRecord::Migration
def self.up
remove_column :users, :mail
end
def self.down
raise IrreversibleMigration
end
end