From 0fe34354405417d6d16d7efb70f6c295436a8148 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Thu, 19 Nov 2020 21:23:53 -0500 Subject: [PATCH] a --- src/models/Staff.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/Staff.ts b/src/models/Staff.ts index d114559..018512a 100644 --- a/src/models/Staff.ts +++ b/src/models/Staff.ts @@ -10,6 +10,7 @@ export interface StaffInterface extends Document { gitlab: string, github: string, bio: string, + extension: string, acknowledgements: string[], } @@ -23,6 +24,7 @@ const Staff: Schema = new Schema({ gitlab: String, github: String, bio: String, + extension: String, acknowledgements: Array, });