Create MOTD table in SQL setup

This commit is contained in:
Markus 2018-02-17 13:58:57 +01:00
parent cf058dc7a9
commit d44cf95736
1 changed files with 5 additions and 0 deletions

5
dist/pvv.sql vendored
View File

@ -20,4 +20,9 @@ CREATE TABLE "projects" (
CREATE TABLE "users" (
"uname" TEXT,
"groups" INT DEFAULT 0
);
CREATE TABLE "motd" (
"title" TEXT,
"content" TEXT
);