Add due date to migration

This commit is contained in:
Luke Harding 2024-05-02 23:22:30 -04:00
parent 9a637b888f
commit a9bcfe154a

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
); );