personal-tracker/server/migrations/2024-05-03-015925_create_tasks/up.sql

7 lines
184 B
MySQL
Raw Normal View History

2024-05-03 02:07:30 +00:00
-- 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
);