Skip to content

Commit

Permalink
fix:seed change
Browse files Browse the repository at this point in the history
  • Loading branch information
Paribesh01 committed Oct 17, 2024
1 parent 09ffd22 commit 3e7c189
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ let jobs = [
maxExperience: 2,
hasExpiryDate: true,
expiryDate: new Date(new Date().setDate(new Date().getDate() + 49)),
companyLogo: '',
hasSalaryRange: true,
minSalary: 50000,
maxSalary: 70000,
Expand Down Expand Up @@ -231,7 +230,6 @@ let jobs = [
hasExperiencerange: true,
minExperience: 1,
maxExperience: 2,
companyLogo: '',
hasExpiryDate: true,
expiryDate: new Date(new Date().setDate(new Date().getDate() + 49)),
hasSalaryRange: true,
Expand Down Expand Up @@ -312,7 +310,6 @@ let jobs = [
hasExperiencerange: true,
minExperience: 1,
maxExperience: 2,
companyLogo: '',
hasExpiryDate: true,
expiryDate: new Date(new Date().setDate(new Date().getDate() + 49)),
hasSalaryRange: true,
Expand Down Expand Up @@ -471,8 +468,8 @@ async function seedJobs() {

async function main() {
await seedUsers();
await seedJobs();
await seedCompanies();
await seedJobs();
}

main();

0 comments on commit 3e7c189

Please sign in to comment.