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-23 16:28:32 +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-23 18:36:17 +02:00
|
|
|
|
2014-09-24 16:27:59 +02:00
|
|
|
ALTER TABLE room_ops_levels ADD COLUMN redact_level INTEGER;
|
2014-09-23 18:36:17 +02:00
|
|
|
|
|
|
|
PRAGMA user_version = 4;
|