Browse Source
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 #3993pull/4025/head
Mathijs van Veluw
1 year ago
committed by
GitHub
1 changed files with 2 additions and 2 deletions
@ -1,2 +1,2 @@ |
|||
ALTER TABLE ciphers |
|||
ADD COLUMN "key" TEXT; |
|||
ADD COLUMN `key` TEXT; |
|||
|
Loading…
Reference in new issue