1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 14:59:20 +00:00
mastodon/db/migrate/20200309150742_add_forwarded_to_reports.rb
2024-12-11 14:25:48 +00:00

7 lines
207 B
Ruby

# frozen_string_literal: true
class AddForwardedToReports < ActiveRecord::Migration[5.2]
def change
add_column :reports, :forwarded, :boolean # rubocop:disable Rails/ThreeStateBooleanColumn
end
end