Add assignee column to schema

This commit is contained in:
Yash Karandikar 2022-04-16 20:09:35 -05:00
parent 4b1f336856
commit f660f63f23

View file

@ -14,6 +14,7 @@ create table if not exists tasks(
name varchar(128) not null,
description varchar(32768) not null,
author integer references users(id) not null,
assignee integer references users(id) not null,
category integer references categories(id) not null,
created timestamp not null,
deadline timestamp