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