create_db.sql 285 B

12345678
  1. create database mplusbase;
  2. create user 'mplusbase'@'%' identified by 'mplusbase';
  3. create user 'mplusbase'@'localhost' identified by 'mplusbase';
  4. flush privileges;
  5. grant all privileges on mplusbase.* to 'mplusbase'@'%';
  6. grant all privileges on mplusbase.* to 'mplusbase'@'localhost';