discourse/db/migrate/20171107020512_drop_email_f...

10 lines
225 B
Ruby
Raw Normal View History

class DropEmailFromUsers < ActiveRecord::Migration[5.1]
def up
# Defer dropping of the columns until the new application code has been deployed.
end
def down
raise ActiveRecord::IrreversibleMigration
end
end