Add zap model, user relation

This commit is contained in:
2024-05-04 17:05:34 +02:00
parent 619bd954b7
commit 49d24990b4
5 changed files with 38 additions and 4 deletions

7
spec/factories/zaps.rb Normal file
View File

@@ -0,0 +1,7 @@
FactoryBot.define do
factory :zap do
user { nil }
request { "" }
receipt { "" }
end
end