Answers for "rails migration add column foreign key"

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
0

Rails Migration Create Table Primary Key

create_table :account_credits, id: false do |t|
  t.string :account_id, primary_key: true
end
Posted by: Guest on February-25-2022

Code answers related to "rails migration add column foreign key"

Browse Popular Code Answers by Language