* fix user grant syntax to correctly grant permissions
This commit is contained in:
committed by
Chris Morgan
parent
426af8298a
commit
8bc3b29bd4
@@ -3,8 +3,7 @@ create database if not exists bugs;
|
||||
use bugs;
|
||||
|
||||
/* make sure the wineowner user has access to the bugs database */
|
||||
grant all on bugs.* to wineowner;
|
||||
|
||||
grant all on bugs.* to 'wineowner'@'localhost';
|
||||
drop table if exists versions;
|
||||
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
create database if not exists apidb;
|
||||
grant all on apidb.* to wineowner;
|
||||
grant all on apidb.* to 'wineowner'@'localhost';
|
||||
|
||||
Reference in New Issue
Block a user