add the tests to run on my sql [execute tests on MySQL]

This commit is contained in:
rodicasutu
2020-10-26 16:53:27 +02:00
parent fb91d3f6a5
commit 8d7701f05c
2 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
# Create alfresco
CREATE USER 'alfresco' IDENTIFIED BY 'alfresco';
GRANT ALL on alfresco.* to 'alfresco'@'%' identified by 'alfresco' with grant option;
FLUSH HOSTS;
FLUSH PRIVILEGES;
# Create DB
CREATE DATABASE IF NOT EXISTS `alfresco` DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;