From c25ca7926ffae7df17215e2e94442ab0359580d4 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Fri, 28 Aug 2020 02:41:44 -0400 Subject: [PATCH] push updated models --- src/models/Account.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/models/Account.ts b/src/models/Account.ts index 9f025d7..49e83ee 100644 --- a/src/models/Account.ts +++ b/src/models/Account.ts @@ -10,6 +10,8 @@ export interface AccountInterface extends Document { locked: boolean, tier: number, supportKey: string, + referralCode: string, + totalReferrals: number, permissions: { staff: boolean, technician: boolean, @@ -33,6 +35,8 @@ const Account = new Schema({ locked: Boolean, tier: Number, supportKey: String, + referralCode: String, + totalReferrals: Number, permissions: { staff: Boolean, technician: Boolean,