Removed UNIQUE property from active_id

This commit is contained in:
xavi 2024-09-08 17:08:34 -07:00
parent f83bef2674
commit 76fb74d504

View File

@ -1,7 +1,7 @@
CREATE TABLE tasks(
task_id INTEGER PRIMARY KEY,
title TEXT NOT NULL UNIQUE,
active_id INTEGER UNIQUE,
active_id INTEGER,
status TEXT NOT NULL DEFAULT 'backlog',
creation_date DATE DEFAULT (date('now')),
due_date TEXT,