Guest User

Untitled

a guest
May 21st, 2018
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.25 KB | None | 0 0
  1. class User < Sequel::Model
  2.   one_to_many :contributions, :class => :Link, :key => :owner_id
  3.   many_to_many :starred_links, :class => :Link, :order => :created_at,
  4.     :join_table => :starred_links, :left_key => :user_id, :right_key => :link_id
  5.  
  6. end
Add Comment
Please, Sign In to add comment