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

Add database schema for lists

parent 44fafc0e
No related branches found
No related tags found
No related merge requests found
drop table if exists list cascade;
create table list(
id serial primary key,
name text not null
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment