mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 05:38:57 +01:00
Fix schema delta 15 on postgres in the very unlikley event that anyone upgrades to 15...
This commit is contained in:
parent
748c0f5efa
commit
8810eb8c39
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
-- 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 INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
id BIGINT PRIMARY KEY,
|
||||
user_name TEXT NOT NULL,
|
||||
access_token INTEGER DEFAULT NULL,
|
||||
profile_tag varchar(32) NOT NULL,
|
||||
|
|
Loading…
Reference in a new issue