Author: acoburn
Date: Wed May 9 20:57:10 2012
New Revision: 1336394
URL: http://svn.apache.org/viewvc?rev=1336394&view=rev
Log:
VCL-576
The "no image" image is inserted into the image table as id=1, but the resource
table is pre-built with the expectation that the "no image"
id=4. The resource table is now populated with an id=1 for "no image".
Modified:
incubator/vcl/trunk/mysql/vcl.sql
Modified: incubator/vcl/trunk/mysql/vcl.sql
URL:
http://svn.apache.org/viewvc/incubator/vcl/trunk/mysql/vcl.sql?rev=1336394&r1=1336393&r2=1336394&view=diff
==============================================================================
--- incubator/vcl/trunk/mysql/vcl.sql (original)
+++ incubator/vcl/trunk/mysql/vcl.sql Wed May 9 20:57:10 2012
@@ -1621,7 +1621,7 @@ INSERT IGNORE provisioningOSinstalltype
--
INSERT INTO `resource` (`id`, `resourcetypeid`, `subid`) VALUES
-(4, 13, 4),
+(4, 13, 1),
(8, 15, 1);
--