Files
discourse/db/migrate/20160716112354_remove_edit_history_public.rb
2017-09-25 13:48:58 +08:00

10 lines
198 B
Ruby

class RemoveEditHistoryPublic < ActiveRecord::Migration[4.2]
def up
remove_column :user_options, :edit_history_public
end
def down
raise ActiveRecord::IrreversibleMigration
end
end