Skip to content

Instantly share code, notes, and snippets.

@zaius
Created June 7, 2010 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zaius/429286 to your computer and use it in GitHub Desktop.
Save zaius/429286 to your computer and use it in GitHub Desktop.
class User < Sequel::Model
one_to_many :posts
def tags_dataset
posts.join(Tag, :post_id => :id)
end
def tags
tags_dataset.all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment