1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/db/migrate/20200309150742_add_forwarded_to_reports.rb
ThibG 1390cc194b
Add indication to admin UI of whether a report has been forwarded (#13237)
* Add indication to admin UI of whether a report has been forwarded

* Rework how forwarded status is displayed

Co-authored-by: Claire <claire.github-309c@sitedethib.com>
2020-12-15 04:30:15 +01:00

5 lines
128 B
Ruby

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