Sha256: ca48df219b8a05d3b24839523acbcd65a29557fbd272d2ac324a4a1c459f699c
Contents?: true
Size: 208 Bytes
Versions: 42
Compression:
Stored size: 208 Bytes
Contents
module Virgo class PostTag < ActiveRecord::Base belongs_to :post belongs_to :tag validates :tag_id, uniqueness: {scope: :post_id} scope :by_position, ->{ order(position: :asc) } end end
Version data entries
42 entries across 42 versions & 1 rubygems