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