diff --git a/db/seeds/fill.rb b/db/seeds/fill.rb index 1033581f7..5a60a78f7 100644 --- a/db/seeds/fill.rb +++ b/db/seeds/fill.rb @@ -15,6 +15,7 @@ FactoryBot.modify do factory :contributor do + organization { Organization.singleton } data_processing_consent { true } first_name { Faker::Name.first_name } last_name { Faker::Name.last_name } @@ -35,6 +36,7 @@ FactoryBot.modify do factory :request do + organization { Organization.singleton } title { Faker::Lorem.question } text { Faker::Lorem.paragraph } user { users.sample }