Skip to content

Commit

Permalink
seed recommitment
Browse files Browse the repository at this point in the history
  • Loading branch information
chelsea-EYDS committed Jan 24, 2025
1 parent 34387b5 commit 8e50a32
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/src/database/seed/seed-bcws.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const handler = async () => {
const bcwsPersonnelRepo = datasource.getRepository(BcwsPersonnelEntity);

try {
for (let i = 0; i < 50; i++) {
for (let i = 0; i < 500; i++) {
const dateApplied = faker.date.past();
const { personnelData } = createPersonnelHandler(locations, tools, certs);

Expand Down
2 changes: 1 addition & 1 deletion backend/src/database/seed/seed-both.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const handler = async () => {
const emcrPersonnelRepo = datasource.getRepository(EmcrPersonnelEntity);

try {
for (let i = 0; i < 50; i++) {
for (let i = 0; i < 500; i++) {
const dateApplied = faker.date.past();

const { personnelData } = createPersonnelHandler(locations, tools, certs);
Expand Down
2 changes: 1 addition & 1 deletion backend/src/database/seed/seed-emcr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const handler = async () => {
const emcrPersonnelRepo = datasource.getRepository(EmcrPersonnelEntity);

try {
for (let i = 0; i < 50; i++) {
for (let i = 0; i < 500; i++) {
const dateApplied = faker.date.past();
const { personnelData } = createPersonnelHandler(locations, tools, certs);

Expand Down

0 comments on commit 8e50a32

Please sign in to comment.