Module: tools Branch: master Commit: ec2175d73b0c704b99be4adfff350449bf431ed7 URL: http://source.winehq.org/git/tools.git/?a=commit;h=ec2175d73b0c704b99be4adff...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Oct 9 17:39:28 2013 +0200
testbot: Add the VM 'off' state to the database creation SQL script.
---
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 e46d5e0..5e79bd3 100644 --- a/testbot/ddl/winetestbot.sql +++ b/testbot/ddl/winetestbot.sql @@ -48,7 +48,7 @@ CREATE TABLE VMs SortOrder INT(3) NOT NULL, Type ENUM('win32', 'win64', 'build') NOT NULL, Role ENUM('extra', 'base', 'winetest', 'retired', 'deleted') NOT NULL, - Status ENUM('dirty', 'reverting', 'sleeping', 'idle', 'running', 'offline', 'maintenance') NOT NULL, + Status ENUM('dirty', 'reverting', 'sleeping', 'idle', 'running', 'off', 'offline', 'maintenance') NOT NULL, ChildPid INT(5) NULL, VirtURI VARCHAR(64) NOT NULL, VirtDomain VARCHAR(32) NOT NULL,