incr/docker/dev/mysql-init/create-testing-db.sql

3 lines
146 B
MySQL
Raw Normal View History

CREATE DATABASE IF NOT EXISTS `testing` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
GRANT ALL PRIVILEGES ON `testing`.* TO 'incr_user'@'%';