Skip to content

Commit e375b92

Browse files
committed
fix for mevdschee#944
1 parent b48ca60 commit e375b92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/fixtures/create_mysql.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
-- cat create_mysql.sql | sudo mysql
22
--
3-
DROP USER 'php-crud-api'@'localhost';
4-
DROP DATABASE `php-crud-api`;
3+
DROP USER IF EXISTS 'php-crud-api'@'localhost';
4+
DROP DATABASE IF EXISTS `php-crud-api`;
55
--
66
CREATE DATABASE `php-crud-api` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
77
CREATE USER 'php-crud-api'@'localhost' IDENTIFIED BY 'php-crud-api';
88
GRANT ALL PRIVILEGES ON `php-crud-api`.* TO 'php-crud-api'@'localhost' WITH GRANT OPTION;
9-
FLUSH PRIVILEGES;
9+
FLUSH PRIVILEGES;

0 commit comments

Comments
 (0)