Skip to content

Instantly share code, notes, and snippets.

@davit-khaburdzania
Created April 25, 2019 20:32
Show Gist options
  • Save davit-khaburdzania/4a6aed8c9e1ac804e881a806728e71d3 to your computer and use it in GitHub Desktop.
Save davit-khaburdzania/4a6aed8c9e1ac804e881a806728e71d3 to your computer and use it in GitHub Desktop.
tagging
class Tag < ApplicationRecord
has_many :taggings
has_many :posts, through: :taggings
end
class Tagging < ApplicationRecord
belongs_to :tag
belongs_to :post
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment