htmx-playground/migrations/0000_init.sql

5 lines
89 B
SQL

CREATE TABLE IF NOT EXISTS todos (
id SERIAL PRIMARY KEY,
description TEXT NOT NULL
);