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

Add tasks to database schema

parent 44e51318
No related branches found
No related tags found
No related merge requests found
drop table if exists task cascade;
create table task(
id serial primary key,
name text not null,
done boolean default false,
list int references list(id)
);
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