mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
25f43faa70
The hope here is that by moving all the schema files into synapse/storage/schema, it gets a bit easier for newcomers to navigate. It certainly got easier for me to write a helpful README. There's more to do on that front, but I'll follow up with other PRs for that.
25 lines
991 B
SQL
25 lines
991 B
SQL
-- Drop, copy & recreate pushers table to change unique key
|
|
-- Also add access_token column at the same time
|
|
CREATE TABLE IF NOT EXISTS pushers2 (
|
|
id BIGINT PRIMARY KEY,
|
|
user_name TEXT NOT NULL,
|
|
access_token BIGINT DEFAULT NULL,
|
|
profile_tag VARCHAR(32) NOT NULL,
|
|
kind VARCHAR(8) NOT NULL,
|
|
app_id VARCHAR(64) NOT NULL,
|
|
app_display_name VARCHAR(64) NOT NULL,
|
|
device_display_name VARCHAR(128) NOT NULL,
|
|
pushkey bytea NOT NULL,
|
|
ts BIGINT NOT NULL,
|
|
lang VARCHAR(8),
|
|
data bytea,
|
|
last_token TEXT,
|
|
last_success BIGINT,
|
|
failing_since BIGINT,
|
|
UNIQUE (app_id, pushkey)
|
|
);
|
|
INSERT INTO pushers2 (id, user_name, profile_tag, kind, app_id, app_display_name, device_display_name, pushkey, ts, lang, data, last_token, last_success, failing_since)
|
|
SELECT id, user_name, profile_tag, kind, app_id, app_display_name, device_display_name, pushkey, ts, lang, data, last_token, last_success, failing_since FROM pushers;
|
|
DROP TABLE pushers;
|
|
ALTER TABLE pushers2 RENAME TO pushers;
|