@@ -572,6 +572,70 @@ const babyDollJacobson: Prisma.UserCreateInput = {
572572 role : Role . LEADERSHIP
573573} ;
574574
575+ const frostBite : Prisma . UserCreateInput = {
576+ firstName : 'Frost' ,
577+ lastName : 'Bite' ,
578+ googleAuthId : 'husky1' ,
579+ email : 'frostbite@northeastern.edu' ,
580+ role : Role . MEMBER
581+ } ;
582+
583+ const winter : Prisma . UserCreateInput = {
584+ firstName : 'Winter' ,
585+ lastName : 'Warrior' ,
586+ googleAuthId : 'husky2' ,
587+ email : 'winterwarrior@northeastern.edu' ,
588+ role : Role . MEMBER
589+ } ;
590+
591+ const paws : Prisma . UserCreateInput = {
592+ firstName : 'Paws' ,
593+ lastName : 'The-Dog' ,
594+ googleAuthId : 'husky3' ,
595+ email : 'paws@northeastern.edu' ,
596+ role : Role . MEMBER
597+ } ;
598+
599+ const snowPaws : Prisma . UserCreateInput = {
600+ firstName : 'Snow' ,
601+ lastName : 'Paws' ,
602+ googleAuthId : 'husky4' ,
603+ email : 'snowpaws@northeastern.edu' ,
604+ role : Role . MEMBER
605+ } ;
606+
607+ const whiteTail : Prisma . UserCreateInput = {
608+ firstName : 'White' ,
609+ lastName : 'Tail' ,
610+ googleAuthId : 'husky5' ,
611+ email : 'whitetail@northeastern.edu' ,
612+ role : Role . MEMBER
613+ } ;
614+
615+ const husky : Prisma . UserCreateInput = {
616+ firstName : 'Husky' ,
617+ lastName : 'Dog' ,
618+ googleAuthId : 'husky6' ,
619+ email : 'huskydog@northeastern.edu' ,
620+ role : Role . MEMBER
621+ } ;
622+
623+ const howler : Prisma . UserCreateInput = {
624+ firstName : 'Howler' ,
625+ lastName : 'Husky' ,
626+ googleAuthId : 'husky7' ,
627+ email : 'howler@northeastern.edu' ,
628+ role : Role . MEMBER
629+ } ;
630+
631+ const snowBite : Prisma . UserCreateInput = {
632+ firstName : 'Snow' ,
633+ lastName : 'Bite' ,
634+ googleAuthId : 'husky8' ,
635+ email : 'SnowBite@northeastern.edu' ,
636+ role : Role . MEMBER
637+ } ;
638+
575639export const dbSeedAllUsers = {
576640 thomasEmrax,
577641 joeShmoe,
@@ -637,5 +701,13 @@ export const dbSeedAllUsers = {
637701 kenWilliams,
638702 boogPowell,
639703 mannyMachado,
640- babyDollJacobson
704+ babyDollJacobson,
705+ frostBite,
706+ winter,
707+ snowPaws,
708+ paws,
709+ whiteTail,
710+ husky,
711+ howler,
712+ snowBite
641713} ;
0 commit comments