Skip to content
Snippets Groups Projects
Verified Commit f7a81cf4 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

FIX: patch shell script

parent cd2bc167
No related branches found
No related tags found
1 merge request!33Fix accent sensitivity
Pipeline #60531 failed
......@@ -38,7 +38,7 @@ check_version $OLD_VERSION
# Get all tables, drop first line, take first column
tables=$(mysql_execute "SHOW TABLE status where Collation='utf8mb3_unicode_ci';" -B | tail +2 | awk '{print $1}')
for table in tables; do
for table in $tables; do
mysql_execute "ALTER TABLE $table CONVERT TO CHARACTER SET utf8mb4 COLLATE uca1400_as_ci;"
done
# mysql_execute "UPDATE data_type SET datatype=17 WHERE datatype=3"
......
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