summaryrefslogtreecommitdiffstats
path: root/db/migrate/20150113213922_remove_users_mail.rb
blob: 8a8b484294ff2b72825afd092ecab307b07c9753 (plain)
1
2
3
4
5
6
7
8
9
class RemoveUsersMail < ActiveRecord::Migration
  def self.up
    remove_column :users, :mail
  end

  def self.down
    raise IrreversibleMigration
  end
end