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

Update documentation of schema

parent a1bc39ba
No related branches found
No related tags found
No related merge requests found
-- A table that stores all the tasks in the system
-- A table that stores all the tasks in the system.
drop table if exists task cascade;
create table task(
id serial primary key,
......@@ -7,7 +7,7 @@ create table task(
list int references list(id)
);
-- A table that stores all the lists in the system
-- 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