Displaying 1 result from an estimated 1 matches for "bit_flag".
Did you mean:
bitflag
2007 Nov 22
1
has_many :through questions
...ngs_to :person
end
The database tables are as follows:
ActiveRecord::Schema.define(:version => 3) do
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 => tr...