Skip to content

Instantly share code, notes, and snippets.

@elcontrastador
Created November 1, 2015 06:20
Show Gist options
  • Save elcontrastador/524d26e07265c37a88e7 to your computer and use it in GitHub Desktop.
Save elcontrastador/524d26e07265c37a88e7 to your computer and use it in GitHub Desktop.
class Phone
has_many :line_assignments
has_many :lines, through: :line_assignments
class Line
has_many :line_assigments
has_many :phones, through: :line_assignments
class LineAssignment
belongs_to :phone
belongs_to :line
line_pos:integer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment