2017-08-31 00:06:56 -04:00
|
|
|
class AddWhisperSupportToTopics < ActiveRecord::Migration[4.2]
|
2016-12-02 01:03:31 -05:00
|
|
|
def up
|
|
|
|
remove_column :topics, :bookmark_count
|
|
|
|
remove_column :topics, :off_topic_count
|
|
|
|
remove_column :topics, :illegal_count
|
|
|
|
remove_column :topics, :inappropriate_count
|
|
|
|
remove_column :topics, :notify_user_count
|
|
|
|
|
|
|
|
add_column :topics, :highest_staff_post_number, :int, default: 0, null: false
|
|
|
|
execute "UPDATE topics SET highest_staff_post_number = highest_post_number"
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
raise ActiveRecord::IrreversibleMigration
|
|
|
|
end
|
|
|
|
end
|