Skip to content

Instantly share code, notes, and snippets.

@jeremyevans
Forked from zaius/sequel associations.rb
Created June 7, 2010 22:35
Show Gist options
  • Save jeremyevans/429288 to your computer and use it in GitHub Desktop.
Save jeremyevans/429288 to your computer and use it in GitHub Desktop.
class User < Sequel::Model
one_to_many :posts
many_to_many :tags, :right_key=>:id, :right_primary_key=>:post_id, :join_table=>:posts
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment