1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-05-17 06:20:04 +02:00

Fix issue with MariaDB/MySQL migrations (#3994)

MariaDB/MySQL doesn't like the normal `"` quotes around the column name.
This needs to be a backtick **`**.

This PR changes the migration script to fix this issue.

Fixes #3993
Dieser Commit ist enthalten in:
Mathijs van Veluw 2023-10-23 12:23:35 +02:00 committet von GitHub
Ursprung d722328f05
Commit ecb31c85d6
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -1,2 +1,2 @@
ALTER TABLE ciphers
ADD COLUMN "key" TEXT;
ALTER TABLE ciphers
ADD COLUMN `key` TEXT;