File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ jobs:
107107 image : mariadb:${{ matrix.mariadb-version }}
108108 env :
109109 MARIADB_DATABASE : sequelize
110- MARIADB_ROOT_PASSWORD : root_password
110+ MARIADB_ROOT_PASSWORD : password
111111 MARIADB_USER : sequelize
112112 MARIADB_PASSWORD : password
113113 ports :
Original file line number Diff line number Diff line change @@ -29,10 +29,11 @@ export default (DB?: 'postgres' | 'mysql' | 'mariadb' | (string & {})) => {
2929 } else if ( DB === 'mariadb' ) {
3030 return new Sequelize (
3131 process . env . MARIADB_DATABASE ?? 'sequelize' ,
32- process . env . MARIADB_USER ?? 'root ' ,
33- process . env . MARIADB_PASSWORD ?? '' ,
32+ process . env . MARIADB_USER ?? 'sequelize ' ,
33+ process . env . MARIADB_PASSWORD ?? 'password ' ,
3434 {
35- host : '127.0.0.1' ,
35+ host : 'localhost' ,
36+ port : 3306 ,
3637 dialect : 'mariadb' ,
3738 logging,
3839 } ,
You can’t perform that action at this time.
0 commit comments