mirror of https://framagit.org/tykayn/mastodon
22 lines
774 B
Ruby
22 lines
774 B
Ruby
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
class AddCategoryToReports < ActiveRecord::Migration[6.1]
|
|
include Mastodon::MigrationHelpers
|
|
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
safety_assured { add_column_with_default :reports, :category, :int, default: 0, allow_null: false }
|
|
add_column :reports, :action_taken_at, :datetime
|
|
add_column :reports, :rule_ids, :bigint, array: true
|
|
safety_assured { execute 'UPDATE reports SET action_taken_at = updated_at WHERE action_taken = TRUE' }
|
|
end
|
|
|
|
def down
|
|
safety_assured { execute 'UPDATE reports SET action_taken = TRUE WHERE action_taken_at IS NOT NULL' }
|
|
remove_column :reports, :category
|
|
remove_column :reports, :action_taken_at
|
|
remove_column :reports, :rule_ids
|
|
end
|
|
end
|