Sha256: 38e442f6173a01b8074a0ad64cd347b09d07c35a2f83c1c0eb2d680dd201d3b7
Contents?: true
Size: 234 Bytes
Versions: 22
Compression:
Stored size: 234 Bytes
Contents
# frozen_string_literal: true class Document < ActiveRecord::Base has_many :children, class_name: 'Document', foreign_key: 'parent_id' belongs_to :parent, class_name: 'Document', foreign_key: 'parent_id' belongs_to :author end
Version data entries
22 entries across 22 versions & 1 rubygems