CREATE TABLE IF NOT EXISTS task (
id integer NOT NULL PRIMARY KEY AUTOINCREMENT,
title text NOT NULL,
description text,
CHECK(title <> '')
);