Add 'db/create.sql'

This commit is contained in:
Sarimoko 2021-07-08 05:16:09 +00:00
parent e26cbb6609
commit f82f7055d2
1 changed files with 5 additions and 0 deletions

5
db/create.sql Normal file
View File

@ -0,0 +1,5 @@
"CREATE USER 'heyo_user' IDENTIFIED BY 'heyo_password';"
"CREATE DATABASE heyo_db_name CHARACTER SET 'utf8mb4' COLLATE 'utf8mb4_unicode_ci';"
"GRANT ALL PRIVILEGES ON heyo_db_name.* TO 'heyo_user';
FLUSH PRIVILEGES;
EXIT