- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsql.sql
More file actions
Latest commit
13 lines (12 loc) · 436 Bytes
/
Copy pathsql.sql
File metadata and controls
13 lines (12 loc) · 436 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
DROPDATABASE IF EXISTS jpa_test;
CREATEDATABASEjpa_test
DEFAULT CHARACTER SET utf8mb4
COLLATE utf8mb4_general_ci;
GRANT ALL ON jpa_test.* TO financial_adminer@'%'
IDENTIFIED BY 'financial_adminer_pass';
DROPDATABASE IF EXISTS jpa_test_bak;
CREATEDATABASEjpa_test_bak
DEFAULT CHARACTER SET utf8mb4
COLLATE utf8mb4_general_ci;
GRANT ALL ON jpa_test_bak.* TO financial_adminer@'%'
IDENTIFIED BY 'financial_adminer_pass';