-- Add up migration script here CREATE TABLE IF NOT EXISTS todos ( id UUID PRIMARY KEY NOT NULL DEFAULT uuid_generate_v7(), title TEXT UNIQUE NOT NULL, description TEXT NOT NULL, completed BOOLEAN NOT NULL DEFAULT FALSE );