summary refs log tree commit diff
path: root/src/db
diff options
context:
space:
mode:
authorCadence Ember <cadence@disroot.org>2026-02-27 18:33:29 +1300
committerCadence Ember <cadence@disroot.org>2026-02-27 18:33:29 +1300
commitea261e825b8b9a80ebae44d3048042af44df8e55 (patch)
treec922895c4deba357864c77ebfd56aa171e5a6c74 /src/db
parentChange sticker URL and stream response (diff)
downloadout-of-your-element-main.tar.xz
Slashes not allowed in MXID HEAD main
Diffstat (limited to 'src/db')
-rw-r--r--src/db/migrations/0034-slash-not-allowed-in-mxid.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/db/migrations/0034-slash-not-allowed-in-mxid.sql b/src/db/migrations/0034-slash-not-allowed-in-mxid.sql
new file mode 100644

index 0000000..ea2d031 --- /dev/null +++ b/src/db/migrations/0034-slash-not-allowed-in-mxid.sql
@@ -0,0 +1,5 @@ +BEGIN TRANSACTION; + +DELETE FROM sim WHERE sim_name like '%/%'; + +COMMIT;