admin broadcast message feature

This commit is contained in:
forest
2022-04-11 14:42:47 -05:00
parent 83b8d67a86
commit 1376525c9e
8 changed files with 51 additions and 5 deletions

View File

@ -0,0 +1,4 @@
DROP TABLE broadcast_message;
UPDATE schemaversion SET version = 23;

View File

@ -0,0 +1,7 @@
CREATE TABLE broadcast_message (
message TEXT NOT NULL
);
UPDATE schemaversion SET version = 24;