Skip to content

Instantly share code, notes, and snippets.

@lawrencepit
Created May 25, 2009 00:13
Show Gist options
  • Save lawrencepit/117308 to your computer and use it in GitHub Desktop.
Save lawrencepit/117308 to your computer and use it in GitHub Desktop.
create_table "groups_people", :id => false, :force => true do |t|
t.integer "group_id", :null => false
t.integer "person_id", :null => false
end
add_index "groups_people", ["group_id"], :name => "index_groups_people_on_group_id"
add_index "groups_people", ["person_id"], :name => "index_groups_people_on_person_id"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment