diff options
Diffstat (limited to 'db/db.sql')
-rw-r--r-- | db/db.sql | 29 |
1 files changed, 0 insertions, 29 deletions
@@ -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**' -); - |