We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f8e021 commit c89cba9Copy full SHA for c89cba9
etc/create_db_and_user.sql
@@ -0,0 +1,11 @@
1
+create database oscommerce2;
2
+
3
+CREATE USER 'oscommerce2'@'%' IDENTIFIED BY 'oscommerce2pwd';
4
5
+CREATE USER 'oscommerce2'@'localhost' IDENTIFIED BY 'oscommerce2pwd';
6
7
+GRANT ALL PRIVILEGES ON oscommerce2.* TO 'oscommerce2'@'localhost';
8
9
+GRANT ALL PRIVILEGES ON oscommerce2.* TO 'oscommerce2'@'%';
10
11
+flush privileges;
0 commit comments