about summary refs log tree commit diff
path: root/db/migrate/20171010023049_add_foreign_key_to_account_moderation_notes.rb
blob: a2c0fbcc4148d499120cf8f8833ff540bbe498fc (plain) (blame)
1
2
3
4
5
class AddForeignKeyToAccountModerationNotes < ActiveRecord::Migration[5.2]
  def change
    safety_assured { add_foreign_key :account_moderation_notes, :accounts }
  end
end