Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-22 05:10:29 +01: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:
Ursprung
d722328f05
Commit
ecb31c85d6
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -1,2 +1,2 @@
|
|||
ALTER TABLE ciphers
|
||||
ADD COLUMN "key" TEXT;
|
||||
ALTER TABLE ciphers
|
||||
ADD COLUMN `key` TEXT;
|
||||
|
|
Laden …
In neuem Issue referenzieren