Skip to content

Commit

Permalink
fix for #944
Browse files Browse the repository at this point in the history
  • Loading branch information
mevdschee committed Dec 25, 2022
1 parent b48ca60 commit e375b92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/fixtures/create_mysql.sql
@@ -1,9 +1,9 @@
-- cat create_mysql.sql | sudo mysql
--
DROP USER 'php-crud-api'@'localhost';
DROP DATABASE `php-crud-api`;
DROP USER IF EXISTS 'php-crud-api'@'localhost';
DROP DATABASE IF EXISTS `php-crud-api`;
--
CREATE DATABASE `php-crud-api` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER 'php-crud-api'@'localhost' IDENTIFIED BY 'php-crud-api';
GRANT ALL PRIVILEGES ON `php-crud-api`.* TO 'php-crud-api'@'localhost' WITH GRANT OPTION;
FLUSH PRIVILEGES;
FLUSH PRIVILEGES;

0 comments on commit e375b92

Please sign in to comment.