Skip to content
Snippets Groups Projects
Unverified Commit ecb31c85 authored by Mathijs van Veluw's avatar Mathijs van Veluw Committed by GitHub
Browse files

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
parent d722328f
No related branches found
No related tags found
No related merge requests found
ALTER TABLE ciphers ALTER TABLE ciphers
ADD COLUMN "key" TEXT; ADD COLUMN `key` TEXT;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment