Using the following snippet, you will be able to create database for WordPress.
1 2 | CREATE SCHEMA `your_db_name` ; GRANT ALL PRIVILEGES ON your_db_name.* TO 'your_user_name'@'localhost' IDENTIFIED BY 'your_password'; |
Snippet Source/Credit: Snipplr
Using the following snippet, you will be able to create database for WordPress.
1 2 | CREATE SCHEMA `your_db_name` ; GRANT ALL PRIVILEGES ON your_db_name.* TO 'your_user_name'@'localhost' IDENTIFIED BY 'your_password'; |
Snippet Source/Credit: Snipplr