Displaying 1 result from an estimated 1 matches for "index_attendees_on_event_id".
2007 Nov 22
1
has_many :through questions
...create_table "attendees", :id => false, :force => true do |t|
t.column "event_id", :integer
t.column "person_id", :integer
t.column "bit_flags", :integer
end
add_index "attendees", ["event_id"], :name =>
"index_attendees_on_event_id"
add_index "attendees", ["person_id"], :name =>
"index_attendees_on_person_id"
create_table "events", :force => true do |t|
t.column "name", :string
t.column "description", :text
t.column &q...