-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcreate_database.sql
More file actions
10 lines (5 loc) · 1.25 KB
/
Copy pathcreate_database.sql
File metadata and controls
10 lines (5 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
CREATE DATABASE drupal;
CREATE USER 'drupal'@'localhost' IDENTIFIED BY 'drupal';
GRANT ALL PRIVILEGES ON drupal.* TO 'drupal'@'localhost';
FLUSH PRIVILEGES;
exit