From a1bc39ba39bac215612fa1870fd74aa311c11f45 Mon Sep 17 00:00:00 2001 From: Simon Lindblad <simon.lindblad93@gmail.com> Date: Wed, 11 May 2016 20:33:44 +0200 Subject: [PATCH] Document database schema --- schema.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schema.sql b/schema.sql index 5a2ddea..5a89a8f 100644 --- a/schema.sql +++ b/schema.sql @@ -1,3 +1,4 @@ +-- 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, -- GitLab