From 3dbfb15bd1d9f10de79cc10f6fe3256f2fa7352f Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 20 Mar 2019 08:33:52 +0100 Subject: [PATCH] Another collation test for mysql --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dcd35fe047..d3ae611ced 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ before_install: - psql -U postgres -c "CREATE DATABASE evennia;" - psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password';" - psql -U postgres -c "ALTER USER evennia CREATEDB;" - - mysql -u root -e "CREATE DATABASE evennia CHARACTER SET utf8 COLLATE utf8_unicode_ci;" + - mysql -u root -e "CREATE DATABASE evennia CHARACTER SET utf8mb4 COLLATE utf8mb_unicode_520_ci;" - mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password';" - mysql -u root -e "GRANT ALL ON *.* TO 'evennia'@'localhost' IDENTIFIED BY 'password';"