Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created February 20, 2012 11:29
Show Gist options
  • Save jlebrech/1868870 to your computer and use it in GitHub Desktop.
Save jlebrech/1868870 to your computer and use it in GitHub Desktop.
class Message < ActiveRecord::Base
belongs_to :ticket, :primary_key => "token", :foreign_key => "token"
end
class Ticket < ActiveRecord::Base
include UUIDHelper
has_many :messages, :primary_key => "token", :foreign_key => "token"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment