create table tasks ( id bigserial not null primary key, state varchar(8) not null, start_at timestamptz not null, username varchar not null references users(username), payload jsonb not null );