This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
203 B
MySQL
Raw Normal View History

2023-03-22 08:12:45 -05:00
CREATE TABLE journal (
user_id INTEGER NOT NULL,
cal_date TEXT NOT NULL,
meal TEXT NOT NULL,
food TEXT NOT NULL,
caused_issue INTEGER NOT NULL,
comments TEXT
) STRICT;