File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,7 @@ services:
8
8
- postgresql
9
9
- docker
10
10
env :
11
- - DB=SqlServer2008 CONNECTION_STRING="Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
12
- - DB=PostgreSQL CONNECTION_STRING="Host=localhost;Port=5432;Username=postgres;Database=nhibernate;Enlist=true;"
13
- - DB=Firebird
14
11
- DB=MySQL CONNECTION_STRING="Server=127.0.0.1;Uid=root;Database=nhibernate;Old Guids=True;"
15
- - DB=SQLite
16
12
before_install :
17
13
- curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
18
14
- curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
@@ -21,7 +17,7 @@ before_install:
21
17
- |-
22
18
if [[ "$DB" == "MySQL" ]]
23
19
then
24
- echo -e '[server]\nlower_case_table_names=1' | sudo tee -a /etc/mysql/my.cnf
20
+ echo -e '[server]\nlower_case_table_names=1\n[mysqld]\ncharacter-set-server=utf8\ncollation-server=utf8_general_ci ' | sudo tee -a /etc/mysql/my.cnf
25
21
sudo service mysql restart
26
22
fi
27
23
- |-
You can’t perform that action at this time.
0 commit comments