mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 04:26:03 +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
|