vol1ura/Sat_9am_5km

View on GitHub
app/models/trophy.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

class Trophy < ApplicationRecord
  belongs_to :badge
  belongs_to :athlete

  validates :athlete_id, uniqueness: { scope: :badge_id }

  store_accessor :info, :data
end