@@ -308,6 +308,78 @@ const reidChandler: Prisma.UserCreateInput = {
308308 role : Role . HEAD
309309} ;
310310
311+ const brooksRobinson : Prisma . UserCreateInput = {
312+ firstName : 'Brooks' ,
313+ lastName : 'Robinson' ,
314+ email : 'the.brooksters@orioles.com' ,
315+ googleAuthId : 'fries' ,
316+ role : Role . HEAD
317+ } ;
318+
319+ const jimPalmer : Prisma . UserCreateInput = {
320+ firstName : 'Jim' ,
321+ lastName : 'Palmer' ,
322+ email : 'jimmy.palms@orioles.com' ,
323+ googleAuthId : 'burger' ,
324+ role : Role . LEADERSHIP
325+ } ;
326+
327+ const eddieMurray : Prisma . UserCreateInput = {
328+ firstName : 'Eddie' ,
329+ lastName : 'Murray' ,
330+ email : 'eddie.murray@orioles.com' ,
331+ googleAuthId : 'hotdog' ,
332+ role : Role . HEAD
333+ } ;
334+
335+ const georgeSisler : Prisma . UserCreateInput = {
336+ firstName : 'George' ,
337+ lastName : 'Sisler' ,
338+ email : 'g.sisler@orioles.com' ,
339+ googleAuthId : 'popcorn' ,
340+ role : Role . LEADERSHIP
341+ } ;
342+
343+ const urbanShocker : Prisma . UserCreateInput = {
344+ firstName : 'Urban' ,
345+ lastName : 'Shocker' ,
346+ email : 'shock.the.game@orioles.com' ,
347+ googleAuthId : 'shocking' ,
348+ role : Role . MEMBER
349+ } ;
350+
351+ const kenWilliams : Prisma . UserCreateInput = {
352+ firstName : 'Ken' ,
353+ lastName : 'Williams' ,
354+ email : 'justKen@orioles.com' ,
355+ googleAuthId : 'kenough' ,
356+ role : Role . MEMBER
357+ } ;
358+
359+ const boogPowell : Prisma . UserCreateInput = {
360+ firstName : 'Boog' ,
361+ lastName : 'Powell' ,
362+ email : 'boogs@orioles.com' ,
363+ googleAuthId : 'soda' ,
364+ role : Role . MEMBER
365+ } ;
366+
367+ const mannyMachado : Prisma . UserCreateInput = {
368+ firstName : 'Manny' ,
369+ lastName : 'Machado' ,
370+ email : 'machoman@orioles.com' ,
371+ googleAuthId : 'macho' ,
372+ role : Role . HEAD
373+ } ;
374+
375+ const babyDollJacobson : Prisma . UserCreateInput = {
376+ firstName : 'Baby Doll' ,
377+ lastName : 'Jacobson' ,
378+ email : 'bbydoll@orioles.com' ,
379+ googleAuthId : 'babes' ,
380+ role : Role . LEADERSHIP
381+ } ;
382+
311383export const dbSeedAllUsers = {
312384 thomasEmrax,
313385 joeShmoe,
@@ -340,5 +412,14 @@ export const dbSeedAllUsers = {
340412 chrisHorton,
341413 mikeMacdonald,
342414 toddMonken,
343- stephenBisciotti
415+ stephenBisciotti,
416+ brooksRobinson,
417+ jimPalmer,
418+ eddieMurray,
419+ georgeSisler,
420+ urbanShocker,
421+ kenWilliams,
422+ boogPowell,
423+ mannyMachado,
424+ babyDollJacobson
344425} ;
0 commit comments