9. MySQL Connection - korayozgurbuz/SWE573TermProject GitHub Wiki

First i set up the mysql connection from my workbench and run the following commands:

CREATE DATABASE bot_detection_webapp;

python manage.py makemigrations

python manage.py migrate

And i created a database named "bot_detection_webapp". Here is what my Database info looked like:

After that, i created a user named "koray" with this command: mysql -u koray -p "koray"

Then run the following commands:

show databases;

use bot_detection_webapp;

show tables;