Skip to content
Snippets Groups Projects
Unverified Commit c00ffb45 authored by Howon Lee's avatar Howon Lee Committed by GitHub
Browse files

Friendly names bugfix 2 (#16482)

Friendly names bugfix 1 was a noop because of a typo in the WHERE clause of the DB migration. This one has been manually tested to go and sync on all 4 supported MB db's.
parent d19be7f5
Branches
Tags
No related merge requests found
......@@ -8384,6 +8384,22 @@ databaseChangeLog:
value: 'simple'
where: "'key'='humanization-strategy' AND value='advanced'"
- changeSet:
id: 311
author: howonlee
comment: Added 0.40.0 Migrate friendly field names, not noop
changes:
- sql:
dbms: mariadb,mysql
sql: |
UPDATE setting SET value='simple' WHERE `key`='humanization-strategy'
AND value='advanced'
- sql:
dbms: postgresql,h2
sql: |
UPDATE setting SET value='simple' WHERE key='humanization-strategy'
AND value='advanced'
# >>>>>>>>>> DO NOT ADD NEW MIGRATIONS BELOW THIS LINE! ADD THEM ABOVE <<<<<<<<<<
########################################################################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment