Built basic blog backend.

This commit is contained in:
2018-11-20 08:39:25 +11:00
parent 75764f744d
commit 8ab9f09287
34 changed files with 221 additions and 98 deletions

View File

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS "BlogArticles" (
"id" BIGSERIAL NOT NULL PRIMARY KEY,
"handle" TEXT NOT NULL UNIQUE,
"title" TEXT NOT NULL,
"image" TEXT NOT NULL,
"shortDescription" TEXT NULL,
"description" TEXT NOT NULL,
"date" TIMESTAMP NOT NULL
);