Answers for "add a foreign key to a migration in rails with a custom name using generate"

3

Add references rails migration

class AddUserToUploads < ActiveRecord::Migration
  def change
    add_reference :uploads, :user, index: true
  end
end
Posted by: Guest on June-06-2020

Code answers related to "add a foreign key to a migration in rails with a custom name using generate"

Browse Popular Code Answers by Language