@@ -229,6 +229,70 @@ const ryanHowe: Prisma.UserCreateInput = {
229229 role : Role . HEAD
230230} ;
231231
232+ const jkDobbins : Prisma . UserCreateInput = {
233+ firstName : 'J.K' ,
234+ lastName : 'Dobbins' ,
235+ email : 'Dobbins.j.k@ravens.com' ,
236+ googleAuthId : 'ravensRB' ,
237+ role : Role . MEMBER
238+ } ;
239+
240+ const davidOjabo : Prisma . UserCreateInput = {
241+ firstName : 'David' ,
242+ lastName : 'Ojabo' ,
243+ email : 'Ojabo.D@ravens.com' ,
244+ googleAuthId : 'ravensOLB' ,
245+ role : Role . MEMBER
246+ } ;
247+
248+ const markAndrews : Prisma . UserCreateInput = {
249+ firstName : 'Mark' ,
250+ lastName : 'Andrews' ,
251+ email : 'Andrews.MD@ravens.com' ,
252+ googleAuthId : 'ravensTE' ,
253+ role : Role . MEMBER
254+ } ;
255+
256+ const odellBeckham : Prisma . UserCreateInput = {
257+ firstName : 'Odell' ,
258+ lastName : 'Beckham' ,
259+ email : 'Beckham.O@ravens.com' ,
260+ googleAuthId : 'ravensWR' ,
261+ role : Role . MEMBER
262+ } ;
263+
264+ const chrisHorton : Prisma . UserCreateInput = {
265+ firstName : 'Chris' ,
266+ lastName : 'Horton' ,
267+ email : 'Horton.C@ravens.com' ,
268+ googleAuthId : 'ravensSTC' ,
269+ role : Role . LEADERSHIP
270+ } ;
271+
272+ const mikeMacdonald : Prisma . UserCreateInput = {
273+ firstName : 'Mike' ,
274+ lastName : 'Macdonald' ,
275+ email : 'Macdonald.M@ravens.com' ,
276+ googleAuthId : 'ravensDC' ,
277+ role : Role . MEMBER
278+ } ;
279+
280+ const toddMonken : Prisma . UserCreateInput = {
281+ firstName : 'Todd' ,
282+ lastName : 'Monken' ,
283+ email : 'Monken.T@ravens.com' ,
284+ googleAuthId : 'ravensOC' ,
285+ role : Role . MEMBER
286+ } ;
287+
288+ const stephenBisciotti : Prisma . UserCreateInput = {
289+ firstName : 'Stephen' ,
290+ lastName : 'Bisciotti' ,
291+ email : 'Bisciotti.S@ravens.com' ,
292+ googleAuthId : 'ravensOwner' ,
293+ role : Role . HEAD
294+ } ;
295+
232296const anthonyBernardi : Prisma . UserCreateInput = {
233297 firstName : 'Anthony' ,
234298 lastName : 'Bernadi' ,
@@ -339,6 +403,77 @@ const dennisBergkamp: Prisma.UserCreateInput = {
339403 email : 'dbergkamp@arsenal.com' ,
340404 googleAuthId : 'DutchMaster' ,
341405 role : Role . MEMBER
406+
407+ const brooksRobinson : Prisma . UserCreateInput = {
408+ firstName : 'Brooks' ,
409+ lastName : 'Robinson' ,
410+ email : 'the.brooksters@orioles.com' ,
411+ googleAuthId : 'fries' ,
412+ role : Role . HEAD
413+ } ;
414+
415+ const jimPalmer : Prisma . UserCreateInput = {
416+ firstName : 'Jim' ,
417+ lastName : 'Palmer' ,
418+ email : 'jimmy.palms@orioles.com' ,
419+ googleAuthId : 'burger' ,
420+ role : Role . LEADERSHIP
421+ } ;
422+
423+ const eddieMurray : Prisma . UserCreateInput = {
424+ firstName : 'Eddie' ,
425+ lastName : 'Murray' ,
426+ email : 'eddie.murray@orioles.com' ,
427+ googleAuthId : 'hotdog' ,
428+ role : Role . HEAD
429+ } ;
430+
431+ const georgeSisler : Prisma . UserCreateInput = {
432+ firstName : 'George' ,
433+ lastName : 'Sisler' ,
434+ email : 'g.sisler@orioles.com' ,
435+ googleAuthId : 'popcorn' ,
436+ role : Role . LEADERSHIP
437+ } ;
438+
439+ const urbanShocker : Prisma . UserCreateInput = {
440+ firstName : 'Urban' ,
441+ lastName : 'Shocker' ,
442+ email : 'shock.the.game@orioles.com' ,
443+ googleAuthId : 'shocking' ,
444+ role : Role . MEMBER
445+ } ;
446+
447+ const kenWilliams : Prisma . UserCreateInput = {
448+ firstName : 'Ken' ,
449+ lastName : 'Williams' ,
450+ email : 'justKen@orioles.com' ,
451+ googleAuthId : 'kenough' ,
452+ role : Role . MEMBER
453+ } ;
454+
455+ const boogPowell : Prisma . UserCreateInput = {
456+ firstName : 'Boog' ,
457+ lastName : 'Powell' ,
458+ email : 'boogs@orioles.com' ,
459+ googleAuthId : 'soda' ,
460+ role : Role . MEMBER
461+ } ;
462+
463+ const mannyMachado : Prisma . UserCreateInput = {
464+ firstName : 'Manny' ,
465+ lastName : 'Machado' ,
466+ email : 'machoman@orioles.com' ,
467+ googleAuthId : 'macho' ,
468+ role : Role . HEAD
469+ } ;
470+
471+ const babyDollJacobson : Prisma . UserCreateInput = {
472+ firstName : 'Baby Doll' ,
473+ lastName : 'Jacobson' ,
474+ email : 'bbydoll@orioles.com' ,
475+ googleAuthId : 'babes' ,
476+ role : Role . LEADERSHIP
342477} ;
343478
344479export const dbSeedAllUsers = {
@@ -377,5 +512,22 @@ export const dbSeedAllUsers = {
377512 patrickVieira,
378513 didierDrogba,
379514 johnTerry,
380- dennisBergkamp
515+ dennisBergkamp,
516+ jkDobbins,
517+ davidOjabo,
518+ markAndrews,
519+ odellBeckham,
520+ chrisHorton,
521+ mikeMacdonald,
522+ toddMonken,
523+ stephenBisciotti,
524+ brooksRobinson,
525+ jimPalmer,
526+ eddieMurray,
527+ georgeSisler,
528+ urbanShocker,
529+ kenWilliams,
530+ boogPowell,
531+ mannyMachado,
532+ babyDollJacobson
381533} ;
0 commit comments