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.
|
class AddReplyToStatuses < ActiveRecord::Migration[5.0]
|
|
def up
|
|
add_column :statuses, :reply, :boolean, nil: false, default: false
|
|
Status.update_all('reply = (in_reply_to_id IS NOT NULL)')
|
|
end
|
|
|
|
def down
|
|
remove_column :statuses, :reply
|
|
end
|
|
end
|