diff --git a/src/sql/schema.sql b/src/sql/schema.sql index 605d6f1..a46a3d3 100644 --- a/src/sql/schema.sql +++ b/src/sql/schema.sql @@ -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