* fix user grant syntax to correctly grant permissions

This commit is contained in:
Henti Smith
2008-07-07 09:20:24 +02:00
committed by Chris Morgan
parent 426af8298a
commit 8bc3b29bd4
2 changed files with 2 additions and 3 deletions

View File

@@ -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;

View File

@@ -1,2 +1,2 @@
create database if not exists apidb;
grant all on apidb.* to wineowner;
grant all on apidb.* to 'wineowner'@'localhost';