Skip to content

Commit 1fad09f

Browse files
Update database creation and user privileges in install.yml
1 parent 3a97a86 commit 1fad09f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848

4949
- name: Create database and user
5050
run: |
51-
mysql -e "CREATE DATABASE IF NOT EXISTS liberu_testing;" -uroot -proot
51+
mysql -e "CREATE DATABASE IF NOT EXISTS liberu_ecommerce_testing;" -uroot -proot
5252
mysql -e "CREATE USER IF NOT EXISTS 'liberu'@'%' IDENTIFIED WITH mysql_native_password BY 'secret';" -uroot -proot
53-
mysql -e "GRANT ALL PRIVILEGES ON liberu_testing.* TO 'liberu'@'%'; FLUSH PRIVILEGES;" -uroot -proot
53+
mysql -e "GRANT ALL PRIVILEGES ON liberu_ecommerce_testing.* TO 'liberu'@'%'; FLUSH PRIVILEGES;" -uroot -proot
5454
5555
- name: Copy environment file
5656
run: cp .env.testing .env

0 commit comments

Comments
 (0)