Sha256: f9f6b6530f9c9e41c36632ae5ab83e84b36b652c855bc1c915325a2460674b88
Contents?: true
Size: 196 Bytes
Versions: 42
Compression:
Stored size: 196 Bytes
Contents
# frozen_string_literal: true require "active_record" module Mihari class Tag < ActiveRecord::Base has_many :taggings, dependent: :destroy has_many :tags, through: :taggings end end
Version data entries
42 entries across 42 versions & 1 rubygems