Files
fizzy/app/models/project.rb
T
2024-09-18 17:25:09 -04:00

9 lines
196 B
Ruby

class Project < ApplicationRecord
include Accessible
belongs_to :account
belongs_to :creator, class_name: "User", default: -> { Current.user }
has_many :bubbles, dependent: :destroy
end