Created
April 24, 2017 09:52
-
-
Save dbsanfte/3910f6466345eb6acd8a68efda44c2df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET GLOBAL innodb_file_format=Barracuda; | |
| SET GLOBAL innodb_default_row_format=DYNAMIC; | |
| CREATE DATABASE IF NOT EXISTS cattle COLLATE = 'utf8_general_ci' CHARACTER SET = 'utf8'; | |
| CREATE USER IF NOT EXISTS 'cattle'@'%' IDENTIFIED BY 'cattle'; | |
| GRANT ALL ON cattle.* TO 'cattle'@'%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment