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
This commit is contained in:
parent
d722328f05
commit
ecb31c85d6
|
@ -1,2 +1,2 @@
|
|||
ALTER TABLE ciphers
|
||||
ADD COLUMN "key" TEXT;
|
||||
ADD COLUMN `key` TEXT;
|
||||
|
|
Loading…
Reference in New Issue