Files
fizzy/app/models/comment.rb
T
2024-09-04 14:54:11 -04:00

5 lines
131 B
Ruby

class Comment < ApplicationRecord
belongs_to :bubble
belongs_to :creator, class_name: "User", default: -> { Current.user }
end