Merge branch 'main' of github.com:cerebrate-project/cerebrate into main

remotes/origin/main
iglocska 2020-06-22 15:07:35 +02:00
commit fda0ac4510
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
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