mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
13 lines
338 B
Ruby
13 lines
338 B
Ruby
# 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
|