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