aboutsummaryrefslogtreecommitdiff
path: root/db/db.sql
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2021-11-17 21:34:41 -0500
committerMichael McVady <femtonaut@gmail.com>2021-11-17 21:34:41 -0500
commit724627420b8aca92fbf4c16a30d4593c25a37f13 (patch)
treeec7e8fcc1461a1531a78c076f13d245b295cd2ba /db/db.sql
parente564fb5054ffe1c17d8c19d0f5b749aa405044e4 (diff)
Render markdown as HTML
Diffstat (limited to 'db/db.sql')
-rw-r--r--db/db.sql3
1 files changed, 1 insertions, 2 deletions
diff --git a/db/db.sql b/db/db.sql
index 3f27856..4df3345 100644
--- a/db/db.sql
+++ b/db/db.sql
@@ -10,7 +10,6 @@ CREATE TABLE entries (
-- updated_at TIMESTAMP NOT NULL
);
-
INSERT INTO entries (
id,
title,
@@ -30,6 +29,6 @@ VALUES
(
3,
'xxx',
- 'yyy'
+ '**bold**'
);