mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
10 lines
198 B
Ruby
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
|