Spaces:
Running
Running
File size: 384 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
-- Creates stats tables for the Perspective moderation tool.
BEGIN TRANSACTION;
CREATE TABLE perspective_stats (
staff TEXT NOT NULL,
roomid TEXT NOT NULL PRIMARY KEY,
result TINYINT(1) NOT NULL,
timestamp INTEGER NOT NULL
);
CREATE INDEX timestamp_idx ON perspective_stats(timestamp);
-- update database version
UPDATE db_info SET value = '5' WHERE key = 'version';
COMMIT;
|