Отладка. Чехорда с версиями mysql и collation, как следствие
parent
5c6b990515
commit
d66e27a631
|
@ -1,2 +1,2 @@
|
||||||
CREATE DATABASE IF NOT EXISTS `app` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
|
CREATE DATABASE IF NOT EXISTS `app` CHARACTER SET utf8 COLLATE utf8_general_ci;
|
||||||
GRANT ALL ON `app`.* TO 'app'@'%' identified by 'app';
|
GRANT ALL ON `app`.* TO 'app'@'%' identified by 'app';
|
|
@ -1,7 +1,7 @@
|
||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql
|
image: mysql:5.6
|
||||||
hostname: "mysql"
|
hostname: "mysql"
|
||||||
container_name: mysql
|
container_name: mysql
|
||||||
command: --default-authentication-plugin=mysql_native_password
|
command: --default-authentication-plugin=mysql_native_password
|
||||||
|
|
|
@ -60,13 +60,13 @@ func dbInit(db *sql.DB) error {
|
||||||
City varchar(255) DEFAULT NULL,
|
City varchar(255) DEFAULT NULL,
|
||||||
Interests varchar(255) DEFAULT NULL,
|
Interests varchar(255) DEFAULT NULL,
|
||||||
PRIMARY KEY (Id)
|
PRIMARY KEY (Id)
|
||||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci`); err != nil {
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8`); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if _, err := db.Exec(`CREATE TABLE IF NOT EXISTS relations (
|
if _, err := db.Exec(`CREATE TABLE IF NOT EXISTS relations (
|
||||||
userId int(11) DEFAULT NULL,
|
userId int(11) DEFAULT NULL,
|
||||||
friendId int(11) DEFAULT NULL
|
friendId int(11) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci`); err != nil {
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8`); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
log.Println("All tables exists")
|
log.Println("All tables exists")
|
||||||
|
|
Loading…
Reference in New Issue