ChangeSet ID: 31291 CVSROOT: /opt/cvs-commit Module name: appdb Changes by: wineowner(a)winehq.org 2007/07/30 18:13:14 Modified files: tables : bugzilla_tables.sql Log message: Chris Morgan <cmorgan(a)alum.wpi.edu> Default user needs permissions to access the bugs database, add a grant line to the bugzilla database and table creation Patch: http://cvs.winehq.org/patch.py?id=31291 Old revision New revision Changes Path 1.1 1.2 +3 -0 appdb/tables/bugzilla_tables.sql Index: appdb/tables/bugzilla_tables.sql diff -u -p appdb/tables/bugzilla_tables.sql:1.1 appdb/tables/bugzilla_tables.sql:1.2 --- appdb/tables/bugzilla_tables.sql:1.1 30 Jul 2007 23:13:14 -0000 +++ appdb/tables/bugzilla_tables.sql 30 Jul 2007 23:13:14 -0000 @@ -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;
participants (1)
-
WineHQ