2014-09-24 10:27:59 -04:00
|
|
|
CREATE TABLE IF NOT EXISTS redactions (
|
2014-09-22 08:42:52 -04:00
|
|
|
event_id TEXT NOT NULL,
|
2014-09-24 10:27:59 -04:00
|
|
|
redacts TEXT NOT NULL,
|
|
|
|
CONSTRAINT ev_uniq UNIQUE (event_id)
|
2014-09-22 08:42:52 -04:00
|
|
|
);
|
2014-09-23 10:28:32 -04:00
|
|
|
|
2014-09-24 10:27:59 -04: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 12:36:17 -04:00
|
|
|
|
2014-09-24 10:27:59 -04:00
|
|
|
ALTER TABLE room_ops_levels ADD COLUMN redact_level INTEGER;
|
2014-09-23 12:36:17 -04:00
|
|
|
|
|
|
|
PRAGMA user_version = 4;
|