From 7897ff2165e10d8410d29db97efdfb15fe215e80 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 3 May 2020 17:49:40 -0400 Subject: [PATCH] update account model --- src/models/Account.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/Account.ts b/src/models/Account.ts index e105680..1af607d 100644 --- a/src/models/Account.ts +++ b/src/models/Account.ts @@ -15,6 +15,7 @@ export interface AccountInterface extends Document { technician: boolean, director: boolean, }, + ramLimitNotification: number, root: boolean, hash: boolean, salt: string, @@ -36,6 +37,7 @@ const Account: Schema = new Schema({ technician: Boolean, director: Boolean, }, + ramLimitNotification: Number, root: Boolean, hash: Boolean, salt: String,