On Thu, Aug 13, 2009 at 2:34 AM, Tom Locke <[email protected]> wrote:
> Does anyone know if this information shows up in schema.rb after a
> rake db:schema:dump ?
Yes, it does. A section of my schema.rb created by db:schema:dump:
create_table "favorite_shows", :force => true do |t|
t.datetime "created_at"
t.integer "show_id"
t.integer "user_id"
end
add_index "favorite_shows", ["show_id"], :name =>
"index_favorite_shows_on_show_id"
add_index "favorite_shows", ["user_id"], :name =>
"index_favorite_shows_on_user_id"
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Hobo
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/hobousers?hl=en
-~----------~----~----~----~------~----~------~--~---