Default user needs permissions to access the bugs database, add a grant line to the bugzilla

database and table creation
This commit is contained in:
Chris Morgan
2007-07-30 23:13:14 +00:00
committed by WineHQ
parent 62820d242c
commit 59923d626d

View File

@@ -2,6 +2,9 @@ create database if not exists bugs;
use bugs; use bugs;
/* make sure the wineowner user has access to the bugs database */
grant all on bugs.* to wineowner;
drop table if exists versions; drop table if exists versions;