@@ -228,6 +228,70 @@ const ryanHowe: Prisma.UserCreateInput = {
228228 role : Role . HEAD
229229} ;
230230
231+ const jkDobbins : Prisma . UserCreateInput = {
232+ firstName : 'J.K' ,
233+ lastName : 'Dobbins' ,
234+ email : 'Dobbins.j.k@ravens.com' ,
235+ googleAuthId : 'ravensRB' ,
236+ role : Role . MEMBER
237+ } ;
238+
239+ const davidOjabo : Prisma . UserCreateInput = {
240+ firstName : 'David' ,
241+ lastName : 'Ojabo' ,
242+ email : 'Ojabo.D@ravens.com' ,
243+ googleAuthId : 'ravensOLB' ,
244+ role : Role . MEMBER
245+ } ;
246+
247+ const markAndrews : Prisma . UserCreateInput = {
248+ firstName : 'Mark' ,
249+ lastName : 'Andrews' ,
250+ email : 'Andrews.MD@ravens.com' ,
251+ googleAuthId : 'ravensTE' ,
252+ role : Role . MEMBER
253+ } ;
254+
255+ const odellBeckham : Prisma . UserCreateInput = {
256+ firstName : 'Odell' ,
257+ lastName : 'Beckham' ,
258+ email : 'Beckham.O@ravens.com' ,
259+ googleAuthId : 'ravensWR' ,
260+ role : Role . MEMBER
261+ } ;
262+
263+ const chrisHorton : Prisma . UserCreateInput = {
264+ firstName : 'Chris' ,
265+ lastName : 'Horton' ,
266+ email : 'Horton.C@ravens.com' ,
267+ googleAuthId : 'ravensSTC' ,
268+ role : Role . LEADERSHIP
269+ } ;
270+
271+ const mikeMacdonald : Prisma . UserCreateInput = {
272+ firstName : 'Mike' ,
273+ lastName : 'Macdonald' ,
274+ email : 'Macdonald.M@ravens.com' ,
275+ googleAuthId : 'ravensDC' ,
276+ role : Role . MEMBER
277+ } ;
278+
279+ const toddMonken : Prisma . UserCreateInput = {
280+ firstName : 'Todd' ,
281+ lastName : 'Monken' ,
282+ email : 'Monken.T@ravens.com' ,
283+ googleAuthId : 'ravensOC' ,
284+ role : Role . MEMBER
285+ } ;
286+
287+ const stephenBisciotti : Prisma . UserCreateInput = {
288+ firstName : 'Stephen' ,
289+ lastName : 'Bisciotti' ,
290+ email : 'Bisciotti.S@ravens.com' ,
291+ googleAuthId : 'ravensOwner' ,
292+ role : Role . HEAD
293+ } ;
294+
231295const anthonyBernardi : Prisma . UserCreateInput = {
232296 firstName : 'Anthony' ,
233297 lastName : 'Bernadi' ,
@@ -244,6 +308,78 @@ const reidChandler: Prisma.UserCreateInput = {
244308 role : Role . HEAD
245309} ;
246310
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+
247383export const dbSeedAllUsers = {
248384 thomasEmrax,
249385 joeShmoe,
@@ -268,5 +404,22 @@ export const dbSeedAllUsers = {
268404 nezamJazayeri,
269405 ryanHowe,
270406 anthonyBernardi,
271- reidChandler
407+ reidChandler,
408+ jkDobbins,
409+ davidOjabo,
410+ markAndrews,
411+ odellBeckham,
412+ chrisHorton,
413+ mikeMacdonald,
414+ toddMonken,
415+ stephenBisciotti,
416+ brooksRobinson,
417+ jimPalmer,
418+ eddieMurray,
419+ georgeSisler,
420+ urbanShocker,
421+ kenWilliams,
422+ boogPowell,
423+ mannyMachado,
424+ babyDollJacobson
272425} ;
0 commit comments