Skip to content

Commit c01e9bc

Browse files
committed
fix mariadb init scripts
1 parent 955bc17 commit c01e9bc

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

mariadb/10.1/init.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
CREATE USER 'devel'@'%' IDENTIFIED WITH mysql_native_password BY 'devel';
2-
CREATE USER 'devel'@'localhost' IDENTIFIED WITH mysql_native_password BY 'devel';
1+
CREATE USER 'devel'@'%' IDENTIFIED BY 'devel';
2+
CREATE USER 'devel'@'localhost' IDENTIFIED BY 'devel';
33

44
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'%';
55
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'localhost';

mariadb/10.5.8/init.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
CREATE USER 'devel'@'%' IDENTIFIED WITH mysql_native_password BY 'devel';
2-
CREATE USER 'devel'@'localhost' IDENTIFIED WITH mysql_native_password BY 'devel';
1+
CREATE USER 'devel'@'%' IDENTIFIED BY 'devel';
2+
CREATE USER 'devel'@'localhost' IDENTIFIED BY 'devel';
33

44
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'%';
55
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'localhost';

mariadb/10.5.9/init.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
CREATE USER 'devel'@'%' IDENTIFIED WITH mysql_native_password BY 'devel';
2-
CREATE USER 'devel'@'localhost' IDENTIFIED WITH mysql_native_password BY 'devel';
1+
CREATE USER 'devel'@'%' IDENTIFIED BY 'devel';
2+
CREATE USER 'devel'@'localhost' IDENTIFIED BY 'devel';
33

44
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'%';
55
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'localhost';

mariadb/latest/init.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
CREATE USER 'devel'@'%' IDENTIFIED WITH mysql_native_password BY 'devel';
2-
CREATE USER 'devel'@'localhost' IDENTIFIED WITH mysql_native_password BY 'devel';
1+
CREATE USER 'devel'@'%' IDENTIFIED BY 'devel';
2+
CREATE USER 'devel'@'localhost' IDENTIFIED BY 'devel';
33

44
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'%';
55
GRANT ALL PRIVILEGES ON *.* TO 'devel'@'localhost';

0 commit comments

Comments
 (0)