feat: load task to database

This commit is contained in:
Alexander Navarro 2025-05-07 16:42:25 -04:00
parent 1e3c235b78
commit 7be435332c
5 changed files with 89 additions and 38 deletions

View file

@ -5,7 +5,7 @@ create table tasks
primary key autoincrement,
payload_key ANY not null
constraint tasks_payload_key
unique,
unique on conflict ignore,
payload TEXT not null,
status_id integer not null
constraint tasks_task_statuses_id_fk