20150616164352_create_repository_attributes.rb 257 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 class CreateRepositoryAttributes < ActiveRecord::Migration def change create_table :repository_attributes do |t| t.integer :repository_id t.references :user, index: true, foreign_key: true t.timestamps null: false end end end