Skip to content

Commit a160553

Browse files
Create a database setup script.
1 parent f153030 commit a160553

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup/setup.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)