From 693e2d9bca75d192f1a4e2a679a1a9a3bd7f3459 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Wed, 22 Mar 2023 08:15:28 -0500 Subject: [PATCH] Thinking about how to do the "boolean" since DB uses TEXT. --- src/objects.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objects.ts b/src/objects.ts index 2b571fe..72dcc6a 100644 --- a/src/objects.ts +++ b/src/objects.ts @@ -9,6 +9,6 @@ interface record { cal_date: string; meal: string; // Only wants options: Breakfast, Lunch, Dinner, Snack. food: string; - caused_issue: boolean; + caused_issue: boolean; // 0 for true and 1 for false like Shell? comments: string; }