@@ -244,6 +244,78 @@ const reidChandler: Prisma.UserCreateInput = {
244244 role : Role . HEAD
245245} ;
246246
247+ const brooksRobinson : Prisma . UserCreateInput = {
248+ firstName : 'Brooks' ,
249+ lastName : 'Robinson' ,
250+ email : 'the.brooksters@orioles.com' ,
251+ googleAuthId : 'fries' ,
252+ role : Role . HEAD
253+ } ;
254+
255+ const jimPalmer : Prisma . UserCreateInput = {
256+ firstName : 'Jim' ,
257+ lastName : 'Palmer' ,
258+ email : 'jimmy.palms@orioles.com' ,
259+ googleAuthId : 'burger' ,
260+ role : Role . LEADERSHIP
261+ } ;
262+
263+ const eddieMurray : Prisma . UserCreateInput = {
264+ firstName : 'Eddie' ,
265+ lastName : 'Murray' ,
266+ email : 'eddie.murray@orioles.com' ,
267+ googleAuthId : 'hotdog' ,
268+ role : Role . HEAD
269+ } ;
270+
271+ const georgeSisler : Prisma . UserCreateInput = {
272+ firstName : 'George' ,
273+ lastName : 'Sisler' ,
274+ email : 'g.sisler@orioles.com' ,
275+ googleAuthId : 'popcorn' ,
276+ role : Role . LEADERSHIP
277+ } ;
278+
279+ const urbanShocker : Prisma . UserCreateInput = {
280+ firstName : 'Urban' ,
281+ lastName : 'Shocker' ,
282+ email : 'shock.the.game@orioles.com' ,
283+ googleAuthId : 'shocking' ,
284+ role : Role . MEMBER
285+ } ;
286+
287+ const kenWilliams : Prisma . UserCreateInput = {
288+ firstName : 'Ken' ,
289+ lastName : 'Williams' ,
290+ email : 'justKen@orioles.com' ,
291+ googleAuthId : 'kenough' ,
292+ role : Role . MEMBER
293+ } ;
294+
295+ const boogPowell : Prisma . UserCreateInput = {
296+ firstName : 'Boog' ,
297+ lastName : 'Powell' ,
298+ email : 'boogs@orioles.com' ,
299+ googleAuthId : 'soda' ,
300+ role : Role . MEMBER
301+ } ;
302+
303+ const mannyMachado : Prisma . UserCreateInput = {
304+ firstName : 'Manny' ,
305+ lastName : 'Machado' ,
306+ email : 'machoman@orioles.com' ,
307+ googleAuthId : 'macho' ,
308+ role : Role . HEAD
309+ } ;
310+
311+ const babyDollJacobson : Prisma . UserCreateInput = {
312+ firstName : 'Baby Doll' ,
313+ lastName : 'Jacobson' ,
314+ email : 'bbydoll@orioles.com' ,
315+ googleAuthId : 'babes' ,
316+ role : Role . LEADERSHIP
317+ } ;
318+
247319export const dbSeedAllUsers = {
248320 thomasEmrax,
249321 joeShmoe,
@@ -268,5 +340,14 @@ export const dbSeedAllUsers = {
268340 nezamJazayeri,
269341 ryanHowe,
270342 anthonyBernardi,
271- reidChandler
343+ reidChandler,
344+ brooksRobinson,
345+ jimPalmer,
346+ eddieMurray,
347+ georgeSisler,
348+ urbanShocker,
349+ kenWilliams,
350+ boogPowell,
351+ mannyMachado,
352+ babyDollJacobson
272353} ;
0 commit comments