1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-01 04:55:30 +00:00
mastodon/db/migrate/20200309150742_add_forwarded_to_reports.rb

8 lines
159 B
Ruby

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