Update INSTALL.md

remotes/origin/main
Andras Iklody 2020-06-22 15:03:50 +02:00 committed by GitHub
parent cce2955341
commit 550d99cab5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,10 +19,10 @@ Create a database for cerebrate
```
mysql
CREATE DATABASE cerebrate;
CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD'
CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD';
GRANT USAGE ON *.* to cerebrate@localhost;
GRANT ALL PRIVILEGES ON cerebrate.* to cerebrate@localhost;
FLUSH ALL PRIVILEGES;
FLUSH PRIVILEGES;
```
Load the default table structure into the database