From c76ba13d24922525a76568ff7d686ba9a310a55e Mon Sep 17 00:00:00 2001 From: Michael McVady Date: Sun, 6 Mar 2022 19:43:55 -0500 Subject: Update README --- db/db.sql | 29 ----------------------------- 1 file changed, 29 deletions(-) (limited to 'db') diff --git a/db/db.sql b/db/db.sql index 69c9fcc..921ce06 100644 --- a/db/db.sql +++ b/db/db.sql @@ -9,32 +9,3 @@ CREATE TABLE posts ( created_at TIMESTAMP NOT NULL DEFAULT NOW(), updated_at TIMESTAMP NOT NULL DEFAULT NOW() ); - -INSERT INTO posts ( - id, - title, - body -) -VALUES -( - 1, - 'First Post', - '# Heading - -Content - -## Sub heading - -More content ...' -), -( - 2, - 'Second Post', - 'Testing [a link](https://bunkergate.org)' -), -( - 3, - 'xxx', - '**testing bold**' -); - -- cgit v1.2.3