mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
193 B
Ruby
10 lines
193 B
Ruby
|
class RemoveEditHistoryPublic < ActiveRecord::Migration
|
||
|
def up
|
||
|
remove_column :user_options, :edit_history_public
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise ActiveRecord::IrreversibleMigration
|
||
|
end
|
||
|
end
|