peachy/assets/.migrations/01 create node.sql

7 lines
193 B
MySQL
Raw Permalink Normal View History

2024-07-06 17:41:55 +00:00
create table node (
id INT PRIMARY KEY,
title TEXT NOT NULL,
body TEXT NOT NULL
);
insert into node(title, body) values ("First post", "This is the beginning of a beautiful relationship.");