Add MOTD table to SQL schema

This commit is contained in:
2018-02-24 19:20:34 +01:00
parent 5412414ce1
commit 2a3f0d7be7
2 changed files with 11 additions and 0 deletions

5
dist/pvv_mysql.sql vendored
View File

@@ -21,3 +21,8 @@ CREATE TABLE users (
`uname` TEXT,
`groups` INT DEFAULT 0
);
CREATE TABLE motd (
`title` TEXT,
`content` TEXT
);