Fix seedfile
Some checks failed
Run unit tests / unit_tests (pull_request) Failing after 17s

This commit is contained in:
Manuel Bustillo 2024-08-02 18:45:28 +02:00
parent c2feb229d2
commit 5f50c1fe11

View File

@ -1,4 +1,4 @@
NUMBER_OF_GUESTS = ENV['SEED_GUEST_COUNT'].presence.to_i || 50
NUMBER_OF_GUESTS = (ENV['SEED_GUEST_COUNT'] || 50).to_i
TablesArrangement.delete_all
Expense.delete_all