aboutsummaryrefslogtreecommitdiff
path: root/db/db.sql
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2022-03-06 19:43:55 -0500
committerMichael McVady <femtonaut@gmail.com>2022-03-06 19:47:46 -0500
commitc76ba13d24922525a76568ff7d686ba9a310a55e (patch)
tree248fb3c7d3f2ced962a06a28a7da5d4df3d92fdf /db/db.sql
parentd4f0ce872da63a6f08309bfc5118697a653fada6 (diff)
Update README
Diffstat (limited to 'db/db.sql')
-rw-r--r--db/db.sql29
1 files changed, 0 insertions, 29 deletions
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**'
-);
-