Server API v1 #1

Merged
luke merged 30 commits from development into main 2024-05-04 20:22:45 +00:00
Showing only changes of commit a9bcfe154a - Show all commits

View File

@ -3,5 +3,6 @@ CREATE TABLE IF NOT EXISTS tasks (
id UUID PRIMARY KEY, id UUID PRIMARY KEY,
title TEXT NOT NULL, title TEXT NOT NULL,
description TEXT NOT NULL, description TEXT NOT NULL,
complete BOOLEAN NOT NULL DEFAULT FALSE complete BOOLEAN NOT NULL DEFAULT FALSE,
due_date TIMESTAMP NOT NULL
); );