db/migrations/000004_comment.up.sql
CREATE TABLE
IF NOT EXISTS log_comment
(
log_id INTEGER NOT NULL,
comment text NOT NULL,
UNIQUE(log_id),
FOREIGN KEY(log_id) REFERENCES log(id)
);
| homepage: | https://compounddata.com/projects/ct |
| git clone: | https://git.compounddata.com/ct |
| summary | history | files |
CREATE TABLE
IF NOT EXISTS log_comment
(
log_id INTEGER NOT NULL,
comment text NOT NULL,
UNIQUE(log_id),
FOREIGN KEY(log_id) REFERENCES log(id)
);