@@ -308,6 +308,102 @@ const reidChandler: Prisma.UserCreateInput = {
308308 role : Role . HEAD
309309} ;
310310
311+ const cristianoRonaldo : Prisma . UserCreateInput = {
312+ firstName : 'Cristiano' ,
313+ lastName : 'Ronaldo' ,
314+ email : 'cronaldo@united.com' ,
315+ googleAuthId : 'Winger' ,
316+ role : Role . HEAD
317+ } ;
318+
319+ const thierryHenry : Prisma . UserCreateInput = {
320+ firstName : 'Thierry' ,
321+ lastName : 'Henry' ,
322+ email : 'thenry@arsenal.com' ,
323+ googleAuthId : 'InvincibleStriker' ,
324+ role : Role . MEMBER
325+ } ;
326+
327+ const frankLampard : Prisma . UserCreateInput = {
328+ firstName : 'Frank' ,
329+ lastName : 'Lampard' ,
330+ email : 'flampard@chelsea.com' ,
331+ googleAuthId : 'MidfieldMaestro' ,
332+ role : Role . MEMBER
333+ } ;
334+
335+ const stevenGerrard : Prisma . UserCreateInput = {
336+ firstName : 'Steven' ,
337+ lastName : 'Gerrard' ,
338+ email : 'sgerrard@liverpool.com' ,
339+ googleAuthId : 'RedCaptain' ,
340+ role : Role . MEMBER
341+ } ;
342+
343+ const ryanGiggs : Prisma . UserCreateInput = {
344+ firstName : 'Ryan' ,
345+ lastName : 'Giggs' ,
346+ email : 'rgiggs@united.com' ,
347+ googleAuthId : 'WingWizard' ,
348+ role : Role . MEMBER
349+ } ;
350+
351+ const alanShearer : Prisma . UserCreateInput = {
352+ firstName : 'Alan' ,
353+ lastName : 'Shearer' ,
354+ email : 'ashearer@blackburn.com' ,
355+ googleAuthId : 'GoalMachine' ,
356+ role : Role . MEMBER
357+ } ;
358+
359+ const paulScholes : Prisma . UserCreateInput = {
360+ firstName : 'Paul' ,
361+ lastName : 'Scholes' ,
362+ email : 'pscholes@united.com' ,
363+ googleAuthId : 'PassMaster' ,
364+ role : Role . MEMBER
365+ } ;
366+
367+ const ericCantona : Prisma . UserCreateInput = {
368+ firstName : 'Eric' ,
369+ lastName : 'Cantona' ,
370+ email : 'ecantona@united.com' ,
371+ googleAuthId : 'KingEric' ,
372+ role : Role . MEMBER
373+ } ;
374+
375+ const didierDrogba : Prisma . UserCreateInput = {
376+ firstName : 'Didier' ,
377+ lastName : 'Drogba' ,
378+ email : 'ddrogba@chelsea.com' ,
379+ googleAuthId : 'ClutchStriker' ,
380+ role : Role . MEMBER
381+ } ;
382+
383+ const patrickVieira : Prisma . UserCreateInput = {
384+ firstName : 'Patrick' ,
385+ lastName : 'Vieira' ,
386+ email : 'pvieira@arsenal.com' ,
387+ googleAuthId : 'MidfieldAnchor' ,
388+ role : Role . MEMBER
389+ } ;
390+
391+ const johnTerry : Prisma . UserCreateInput = {
392+ firstName : 'John' ,
393+ lastName : 'Terry' ,
394+ email : 'jterry@chelsea.com' ,
395+ googleAuthId : 'DefensiveRock' ,
396+ role : Role . MEMBER
397+ } ;
398+
399+ const dennisBergkamp : Prisma . UserCreateInput = {
400+ firstName : 'Dennis' ,
401+ lastName : 'Bergkamp' ,
402+ email : 'dbergkamp@arsenal.com' ,
403+ googleAuthId : 'DutchMaster' ,
404+ role : Role . MEMBER
405+ } ;
406+
311407const brooksRobinson : Prisma . UserCreateInput = {
312408 firstName : 'Brooks' ,
313409 lastName : 'Robinson' ,
@@ -405,6 +501,18 @@ export const dbSeedAllUsers = {
405501 ryanHowe,
406502 anthonyBernardi,
407503 reidChandler,
504+ cristianoRonaldo,
505+ thierryHenry,
506+ frankLampard,
507+ stevenGerrard,
508+ ryanGiggs,
509+ paulScholes,
510+ alanShearer,
511+ ericCantona,
512+ patrickVieira,
513+ didierDrogba,
514+ johnTerry,
515+ dennisBergkamp,
408516 jkDobbins,
409517 davidOjabo,
410518 markAndrews,
0 commit comments