-- Your SQL goes here CREATE TABLE IF NOT EXISTS tasks ( id UUID PRIMARY KEY, title TEXT NOT NULL, description TEXT NOT NULL, complete BOOLEAN NOT NULL DEFAULT FALSE, due_date TIMESTAMP NOT NULL );