diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-07-27 12:30:22 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-07-27 12:30:22 +0100 |
commit | 26cb0efa88c2fa84089c74e3de02fa2ce832f47a (patch) | |
tree | 1d4534224c855f17fa82319a9367e99d66213b27 | |
parent | Delete e2e keys on device delete (diff) | |
download | synapse-26cb0efa88c2fa84089c74e3de02fa2ce832f47a.tar.xz |
SQL syntax fix
-rw-r--r-- | synapse/storage/schema/delta/33/devices_for_e2e_keys.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/33/devices_for_e2e_keys.sql b/synapse/storage/schema/delta/33/devices_for_e2e_keys.sql index 2908c4d232..140f2b63e0 100644 --- a/synapse/storage/schema/delta/33/devices_for_e2e_keys.sql +++ b/synapse/storage/schema/delta/33/devices_for_e2e_keys.sql @@ -16,4 +16,4 @@ -- make sure that we have a device record for each set of E2E keys, so that the -- user can delete them if they like. INSERT INTO devices - SELECT user_id, device_id, "unknown device" FROM e2e_device_keys_json; + SELECT user_id, device_id, 'unknown device' FROM e2e_device_keys_json; |