mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 01:59:08 +01:00
7 lines
131 B
Ruby
7 lines
131 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Appendable < ApplicationRecord
|
||
|
belongs_to :parent, polymorphic: true
|
||
|
belongs_to :user
|
||
|
end
|