Skip to content

Commit

Permalink
include events without specifying id so that tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
lizgarciao committed Dec 3, 2023
1 parent ba8f604 commit e445a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
seeder.generate_dump_file_types

10.times do |i|
Event.find_or_create_by(id: i+1, start: "200#{i}-10-10", finish: "200#{i}-10-11", success: true)
Event.find_or_create_by(start: "200#{i}-10-10", finish: "200#{i}-10-11", success: true)
end

0 comments on commit e445a23

Please sign in to comment.