Skip to content
Snippets Groups Projects
Commit a1bc39ba authored by Simon Lindblad's avatar Simon Lindblad
Browse files

Document database schema

parent f26caf69
No related branches found
No related tags found
No related merge requests found
-- A table that stores all the tasks in the system
drop table if exists task cascade;
create table task(
id serial primary key,
......@@ -6,6 +7,7 @@ create table task(
list int references list(id)
);
-- A table that stores all the lists in the system
drop table if exists list cascade;
create table list(
id serial primary key,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment