base.sql 562 B

1234567
  1. CREATE USER 'saas'@'%' IDENTIFIED BY 'select111***';
  2. GRANT All privileges ON saas_account.* TO 'saas'@'%' identified by 'select111***' with grant option;
  3. GRANT All privileges ON saas_auth.* TO 'saas'@'%' identified by 'select111***' with grant option;
  4. GRANT All privileges ON saas_file.* TO 'saas'@'%' identified by 'select111***' with grant option;
  5. GRANT All privileges ON saas_mail.* TO 'saas'@'%' identified by 'select111***' with grant option;
  6. GRANT All privileges ON saas_biz.* TO 'saas'@'%' identified by 'select111***' with grant option;
  7. flush privileges;