mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-21 21:27:47 +01:00
8 lines
151 B
Ruby
8 lines
151 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Appendable < ApplicationRecord
|
|
acts_as_paranoid
|
|
|
|
belongs_to :parent, polymorphic: true
|
|
belongs_to :user
|
|
end
|