Removing innodb_file_format as it's deprecated

This commit is contained in:
Beshoy Girgis
2020-12-05 04:22:54 +00:00
parent 551a2cbcaa
commit 2f6851f210
-2
View File
@@ -32,9 +32,7 @@ jobs:
run: chmod -R 777 storage bootstrap/cache
- name: Create Database
run: |
mysql -h 127.0.0.1 -u root -e "show variables like 'innodb_fast_shutdown';"
mysql -h 127.0.0.1 -u root -e "SET GLOBAL innodb_file_per_table = 1;"
mysql -h 127.0.0.1 -u root -e "SET GLOBAL innodb_file_format = BARRACUDA;"
mysql -h 127.0.0.1 -u root -e "SET GLOBAL innodb_large_prefix = 1;"
mysql -h 127.0.0.1 -u root -e "CREATE DATABASE TEST;"
mysql -h 127.0.0.1 -u root -e "GRANT ALL ON TEST.* TO 'TEST'@'localhost' IDENTIFIED BY 'TEST';"