comments/migrations/20240415053921_create-table-comments.sql

7 lines
110 B
MySQL
Raw Permalink Normal View History

2024-04-15 02:10:27 -04:00
CREATE TABLE IF NOT EXISTS comments
(
id INTEGER PRIMARY KEY NOT NULL,
name TEXT,
content TEXT NOT NULL
);