test using native msql instead of docker

This commit is contained in:
Dave Horton
2019-12-05 09:43:47 -05:00
parent 28d05be789
commit 98369c377b
11 changed files with 1048 additions and 111 deletions
+3
View File
@@ -0,0 +1,3 @@
create database jambones_test;
create user jambones_test@localhost IDENTIFIED WITH mysql_native_password by 'jambones_test';
grant all on jambones_test.* to jambones_test@localhost;