htmx-playground/migrations/0000_init.sql

5 lines
89 B
MySQL
Raw Normal View History

2024-03-25 02:26:32 +00:00
CREATE TABLE IF NOT EXISTS todos (
id SERIAL PRIMARY KEY,
description TEXT NOT NULL
);