Skip to content

Instantly share code, notes, and snippets.

@roryfranklin
Created July 14, 2017 09:55
Show Gist options
  • Save roryfranklin/c0609526fd2dd5cac9857dbeb8d79eca to your computer and use it in GitHub Desktop.
Save roryfranklin/c0609526fd2dd5cac9857dbeb8d79eca to your computer and use it in GitHub Desktop.
Car Review and Ownership modelling
class Car < ApplicationRecord
belongs_to :user
end
class Review < ApplicationRecord
belongs_to :author, class_name: 'User'
end
class User < ApplicationRecord
has_many :cars
has_many :reviews
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment