Create a new database (also called schema) by running the statement CREATE DATABASE GADATA CHARSET=UTF8.
Create a new database user by running the statement CREATE USER GADATA IDENTIFIED BY 'password'.
Grant full permissions to the new database created in step 1 to the user created in step 2, by running the statement GRANT ALL ON GADATA.* to 'GADATA'.