mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
add the tests to run on my sql [execute tests on MySQL]
This commit is contained in:
7
scripts/my_sql_travis.sql
Normal file
7
scripts/my_sql_travis.sql
Normal 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;
|
Reference in New Issue
Block a user