We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97507a7 commit 9e8eb2bCopy full SHA for 9e8eb2b
db/seeds.rb
@@ -1,7 +1,7 @@
1
require "faker"
2
3
JobApplication.destroy_all
4
-50.times do
+20.times do
5
method_of_contact = %w[email internet_job_application recruiter].sample
6
email_address = (method_of_contact == "email") ? Faker::Internet.email : nil
7
website_link = (method_of_contact == "internet_job_application") ? "https://example.com/" : nil
@@ -16,6 +16,7 @@
16
position_title: Faker::Job.title,
17
website_link: website_link,
18
claimed_for_unemployment: [true, false].sample,
19
- status: %w[interviewing no_response not_hired job_offer].sample
+ status: %w[interviewing no_response not_hired job_offer].sample,
20
+ location: %w[remote in_office hybrid].sample
21
)
22
end
0 commit comments