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
SQL

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;