mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-25 16:13:03 +01:00
8 lines
157 B
Ruby
8 lines
157 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Appendable < ApplicationRecord
|
|
include Discard::Model
|
|
|
|
belongs_to :parent, polymorphic: true
|
|
belongs_to :user
|
|
end
|