#database base user permission issues
6 messages · Page 1 of 1 (latest)
Hey @jovial knoll 👋
You need to grant permissions to user "sql_eliteexchang" to create a shadow database.
Could you grant them the permissions and then try to invoke npx prisma migrate dev command?
You could grant permissions to a user through this SQL:
GRANT CREATE ON *.* TO 'username'@'hostname';
*.* signifies all databases and all tables within those databases on the MySQL server