todo/migrations/2025-06-20-111801_create_tasks/up.sql

8 lines
137 B
MySQL
Raw Permalink Normal View History

2025-06-20 13:03:55 +02:00
-- Your SQL goes here
CREATE TABLE `tasks`(
`id` INT4 NOT NULL PRIMARY KEY,
`title` VARCHAR NOT NULL,
`description` TEXT NOT NULL
);