- create gw_events, crew_gw_participations, gw_crew_scores, gw_individual_scores - add models, blueprints, controllers for GW tracking - add model specs and gw_events controller specs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
147 B
Ruby
8 lines
147 B
Ruby
FactoryBot.define do
|
|
factory :crew_gw_participation do
|
|
crew
|
|
gw_event
|
|
preliminary_ranking { nil }
|
|
final_ranking { nil }
|
|
end
|
|
end
|