Files
fizzy/app/models/user/weekly_summary.rb
T
2025-10-25 20:06:57 +02:00

7 lines
224 B
Ruby

# This acts as a join table between users and period_summaries so that we can reuse the
# same summaries for different users.
class User::WeeklySummary < ApplicationRecord
belongs_to :user
belongs_to :period_summary
end