create_table "tags_pages", :id => false do |t|
t.integer "tag_id", "page_id"
end
add_index "tags_pages", "tag_id"
add_index "tags_pages", "page_id"
How activerecord works on this table ? I want to insert and delete new rows. Sorry if it is a noob question.