Skip to content

Instantly share code, notes, and snippets.

@andrew-carroll
Created October 11, 2015 17:23
Show Gist options
  • Save andrew-carroll/804375b8dff4db70cc39 to your computer and use it in GitHub Desktop.
Save andrew-carroll/804375b8dff4db70cc39 to your computer and use it in GitHub Desktop.
class CreateFriendships < ActiveRecord::Migration
def change
create_table :friendships do |t|
t.belongs_to :person, index: true, null: false, foreign_key: true
t.belongs_to :friend, index: true, null: false, foreign_key: true
t.timestamps null: false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment