Skip to content

Commit c89cba9

Browse files
committed
work
1 parent 5f8e021 commit c89cba9

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

etc/create_db_and_user.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)