MySQL : Add new user with privileges.
Add user...
mysql>  create user [email protected] identified by '[email protected]';

Assign privileges...
mysql>  grant all privileges on mo_dev.* to [email protected] with grant option;