blob: 5efb477a1166717dae69f80716db8c074de2b7d6 (
plain)
1
2
3
4
5
6
7
8
9
|
create table api.todos (
id serial primary key,
done boolean not null default false,
task text not null,
due timestamptz
);
-- insert into api.todos (task) values
-- ('finish tutorial 0'), ('pat self on back');
|