You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2009/09/15 14:44:40 UTC

svn commit: r815300 - /incubator/vcl/trunk/mysql/vcl.sql

Author: jfthomps
Date: Tue Sep 15 12:44:40 2009
New Revision: 815300

URL: http://svn.apache.org/viewvc?rev=815300&view=rev
Log:
VCL-184

added serialization field to structure of variable table (bug reported on vcl-user list that a value was used for it, but it wasn't part of the table structure)

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=815300&r1=815299&r2=815300&view=diff
==============================================================================
--- incubator/vcl/trunk/mysql/vcl.sql (original)
+++ incubator/vcl/trunk/mysql/vcl.sql Tue Sep 15 12:44:40 2009
@@ -951,6 +951,7 @@
 CREATE TABLE IF NOT EXISTS `variable` (
   `id` smallint(5) unsigned NOT NULL auto_increment,
   `name` varchar(128) NOT NULL,
+  `serialization` enum('none','yaml','phpserialize') NOT NULL default 'none',
   `value` longtext NOT NULL,
   `setby` varchar(128) default NULL,
   `timestamp` datetime NOT NULL,