mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-07 06:03:09 -06:00
Fix duplicate name
This commit is contained in:
parent
d7f7488ee8
commit
57ac088094
|
|
@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS federationsender_queue_edus (
|
||||||
|
|
||||||
CREATE UNIQUE INDEX IF NOT EXISTS federationsender_queue_edus_json_nid_idx
|
CREATE UNIQUE INDEX IF NOT EXISTS federationsender_queue_edus_json_nid_idx
|
||||||
ON federationsender_queue_edus (json_nid, server_name);
|
ON federationsender_queue_edus (json_nid, server_name);
|
||||||
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_json_nid_idx
|
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_nid_idx
|
||||||
ON federationsender_queue_edus (json_nid);
|
ON federationsender_queue_edus (json_nid);
|
||||||
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_server_name_idx
|
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_server_name_idx
|
||||||
ON federationsender_queue_edus (server_name);
|
ON federationsender_queue_edus (server_name);
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ CREATE TABLE IF NOT EXISTS federationsender_queue_edus (
|
||||||
|
|
||||||
CREATE UNIQUE INDEX IF NOT EXISTS federationsender_queue_edus_json_nid_idx
|
CREATE UNIQUE INDEX IF NOT EXISTS federationsender_queue_edus_json_nid_idx
|
||||||
ON federationsender_queue_edus (json_nid, server_name);
|
ON federationsender_queue_edus (json_nid, server_name);
|
||||||
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_json_nid_idx
|
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_nid_idx
|
||||||
ON federationsender_queue_edus (json_nid);
|
ON federationsender_queue_edus (json_nid);
|
||||||
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_server_name_idx
|
CREATE INDEX IF NOT EXISTS federationsender_queue_edus_server_name_idx
|
||||||
ON federationsender_queue_edus (server_name);
|
ON federationsender_queue_edus (server_name);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue