Files
danbooru/db/migrate/20220925045236_add_subject_to_mod_actions.rb
evazion 9026875776 db: add subject_id, subject_type columns to mod_actions.
The subject of the mod action is the post, user, or other object the modaction is for.
2022-09-25 00:03:52 -05:00

10 lines
293 B
Ruby

class AddSubjectToModActions < ActiveRecord::Migration[7.0]
def change
add_column :mod_actions, :subject_type, :string, null: true
add_column :mod_actions, :subject_id, :integer, null: true
add_index :mod_actions, :subject_type
add_index :mod_actions, :subject_id
end
end