MatrixSynapse/synapse/storage/schema/delta/v4.sql

13 lines
372 B
MySQL
Raw Normal View History

2014-09-24 16:27:59 +02:00
CREATE TABLE IF NOT EXISTS redactions (
2014-09-22 14:42:52 +02:00
event_id TEXT NOT NULL,
2014-09-24 16:27:59 +02:00
redacts TEXT NOT NULL,
CONSTRAINT ev_uniq UNIQUE (event_id)
2014-09-22 14:42:52 +02:00
);
2014-09-24 16:27:59 +02:00
CREATE INDEX IF NOT EXISTS redactions_event_id ON redactions (event_id);
CREATE INDEX IF NOT EXISTS redactions_redacts ON redactions (redacts);
2014-09-24 16:27:59 +02:00
ALTER TABLE room_ops_levels ADD COLUMN redact_level INTEGER;
PRAGMA user_version = 4;