We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f153030 commit a160553Copy full SHA for a160553
setup/setup.sql
@@ -0,0 +1,6 @@
1
+-- Use these queries to set up the database for MySQL or MariaDB
2
+
3
+CREATE DATABASE binarytwig CHARACTER SET UTF8;
4
+CREATE USER binarytwig@localhost IDENTIFIED BY 'password';
5
+GRANT ALL PRIVILEGES ON binarytwig.* TO binarytwig@localhost;
6
+FLUSH PRIVILEGES;
0 commit comments