todo/migrations/1-init_db.sql
2025-02-06 12:41:54 -05:00

5 lines
67 B
SQL

CREATE TABLE todo(
id INT PRIMARY KEY,
name VARCHAR(50)
);