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

7 lines
193 B
SQL

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.");