From 59923d626d01983efed1c93135ddbd0b5387baef Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Mon, 30 Jul 2007 23:13:14 +0000 Subject: [PATCH] Default user needs permissions to access the bugs database, add a grant line to the bugzilla database and table creation --- tables/bugzilla_tables.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tables/bugzilla_tables.sql b/tables/bugzilla_tables.sql index a10ccbf..5f44781 100644 --- a/tables/bugzilla_tables.sql +++ b/tables/bugzilla_tables.sql @@ -2,6 +2,9 @@ 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; + drop table if exists versions;