Thinking about how to do the "boolean" since DB uses TEXT.

This commit is contained in:
Hyperling 2023-03-22 08:15:28 -05:00
parent 8ffc7660dd
commit 693e2d9bca

View File

@ -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;
}