You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
338 B
12 lines
338 B
# frozen_string_literal: true |
|
|
|
class AddReplyToStatuses < ActiveRecord::Migration[5.0] |
|
def up |
|
add_column :statuses, :reply, :boolean, default: false # rubocop:disable Rails/ThreeStateBooleanColumn |
|
Status.unscoped.update_all('reply = (in_reply_to_id IS NOT NULL)') |
|
end |
|
|
|
def down |
|
remove_column :statuses, :reply |
|
end |
|
end
|
|
|