test/example-3/0002-add-todos.sql @ f7ad73357ed9
default tip
Add some documentation
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 11 Apr 2024 08:39:29 -0400 |
parents |
6b27e5b734d8 |
children |
(none) |
CREATE TABLE todos (
id INTEGER PRIMARY KEY,
user_id INTEGER NOT NULL,
done BOOLEAN NOT NULL,
content TEXT,
FOREIGN KEY (user_id) REFERENCES users(id)
);
INSERT INTO todos (id, user_id, content, done) VALUES (0, 0, 'Write DBvolve skeleton.', TRUE);
INSERT INTO todos (id, user_id, content, done) VALUES (1, 0, 'Write DBvolve test suite.', FALSE);