Mysql
 sql >> Database >  >> RDS >> Mysql

comando CREATE negato all'utente?

Hai concesso le autorizzazioni utente solo alla tabella 'charmstyle_com' all'interno del database 'charmstyle_com'. Quello che probabilmente vuoi è concedere i permessi a tutte le tabelle in 'charmstyle_com' (o almeno alla tabella 'adminnotification_inbox')

 GRANT ALL PRIVILEGES ON `charmstyle_com`.* TO 'charm'@'localhost' 

in alternativa

 GRANT ALL PRIVILEGES ON `charmstyle_com`.`adminnotification_inbox` 
     TO 'charm'@'localhost'