This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-02-09 11:25:39 -08:00
|
|
|
class AddReplyToStatuses < ActiveRecord::Migration[5.0]
|
|
|
|
def up
|
|
|
|
add_column :statuses, :reply, :boolean, nil: false, default: false
|
2019-09-27 16:05:26 -07:00
|
|
|
Status.unscoped.update_all('reply = (in_reply_to_id IS NOT NULL)')
|
2017-02-09 11:25:39 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :statuses, :reply
|
|
|
|
end
|
|
|
|
end
|