From 7cff689ac0a87d63cb4853666781c432bfcb6129 Mon Sep 17 00:00:00 2001 From: Nate Taylor Date: Tue, 29 Oct 2019 07:29:12 -0500 Subject: [PATCH] Adding user types --- data/db.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/data/db.json b/data/db.json index 861b824..8c05b20 100644 --- a/data/db.json +++ b/data/db.json @@ -113,12 +113,25 @@ { "id": 1, "firstName": "Emil", - "lastName": "Ferrigno" + "lastName": "Ferrigno", + "userTypeId": 1 }, { "id": 2, "firstName": "Kaitlin", - "lastName": "Harjo" + "lastName": "Harjo", + "userTypeId": 3 } - ] + ], + "userTypes": [{ + "id": 1, + "description": "individual" + }, + { + "id": 2, + "description": "business" + },{ + "id": 3, + "description": "premium club" + }] }