From f64d7759898c70360d1db3cf76c659ca352ec722 Mon Sep 17 00:00:00 2001 From: Scott Moss Date: Mon, 14 Oct 2019 07:34:29 -0500 Subject: [PATCH] chore --- api/src/db/schema.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 api/src/db/schema.json diff --git a/api/src/db/schema.json b/api/src/db/schema.json new file mode 100644 index 0000000..65d7e7a --- /dev/null +++ b/api/src/db/schema.json @@ -0,0 +1,12 @@ +{ + "user": { + "id": "string", + "username": "string" + }, + "pet":{ + "id": "string", + "createdAt": "number", + "name": "string", + "type": "string" + } +}