Skip to content

Instantly share code, notes, and snippets.

@dbsanfte
Created April 24, 2017 09:52
Show Gist options
  • Select an option

  • Save dbsanfte/3910f6466345eb6acd8a68efda44c2df to your computer and use it in GitHub Desktop.

Select an option

Save dbsanfte/3910f6466345eb6acd8a68efda44c2df to your computer and use it in GitHub Desktop.
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