Sha256: a24daeb05487b72d03a4393f1b902986228a9b506ddb1cf9153aa1436ba35ada
Contents?: true
Size: 229 Bytes
Versions: 7
Compression:
Stored size: 229 Bytes
Contents
# frozen_string_literal: true module Mihari module Models # # Tag model # class Tag < ActiveRecord::Base has_many :taggings, dependent: :destroy has_many :tags, through: :taggings end end end
Version data entries
7 entries across 7 versions & 1 rubygems