Skip to content

Instantly share code, notes, and snippets.

@joshnabbott
Created February 24, 2009 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshnabbott/5b4c8edce2e25edf82c6 to your computer and use it in GitHub Desktop.
Save joshnabbott/5b4c8edce2e25edf82c6 to your computer and use it in GitHub Desktop.
# change this
map.resources :styles do |styles|
styles.resources :skus do |skus|
skus.resources :upcs
end
end
# to ?
map.resources :styles, :has_many => [ :skus, :has_many => [ :upcs ] ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment