mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
9 lines
198 B
Ruby
9 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
|