Module: tools Branch: master Commit: c8699e6985d0c9c89d651589ec7440dd7114b265 URL: http://source.winehq.org/git/tools.git/?a=commit;h=c8699e6985d0c9c89d651589e...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Apr 3 16:57:03 2013 +0200
testbot/ddl: Fix the SQL code that creates the 'batch' user.
---
testbot/ddl/winetestbot.sql | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/testbot/ddl/winetestbot.sql b/testbot/ddl/winetestbot.sql index 4fbde28..c8820cc 100644 --- a/testbot/ddl/winetestbot.sql +++ b/testbot/ddl/winetestbot.sql @@ -162,7 +162,7 @@ INSERT INTO Roles (Name, IsDefaultRole) VALUES('admin', 'N'); INSERT INTO Roles (Name, IsDefaultRole) VALUES('wine-devel', 'Y');
INSERT INTO Users (Name, EMail, Password, Active, RealName) - VALUES('batch', '/dev/null', '*', 'Batch user for internal jobs', NULL); + VALUES('batch', '/dev/null', '*', 'Y', 'Batch user for internal jobs');
INSERT INTO Branches (Name, IsDefault) VALUES('master', 'Y');