mirror of
https://github.com/discourse/discourse.git
synced 2026-08-14 06:55:03 -05:00
10 lines
225 B
Ruby
10 lines
225 B
Ruby
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
|