You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2006/10/04 16:42:30 UTC

svn commit: r452898 - /incubator/roller/trunk/metadata/database/createdb.vm

Author: snoopdave
Date: Wed Oct  4 07:42:29 2006
New Revision: 452898

URL: http://svn.apache.org/viewvc?view=rev&rev=452898
Log:
decorator should be default null, as it is in migration script

Modified:
    incubator/roller/trunk/metadata/database/createdb.vm

Modified: incubator/roller/trunk/metadata/database/createdb.vm
URL: http://svn.apache.org/viewvc/incubator/roller/trunk/metadata/database/createdb.vm?view=diff&rev=452898&r1=452897&r2=452898
==============================================================================
--- incubator/roller/trunk/metadata/database/createdb.vm (original)
+++ incubator/roller/trunk/metadata/database/createdb.vm Wed Oct  4 07:42:29 2006
@@ -77,7 +77,7 @@
     hidden          $BOOLEAN_SQL_TYPE_FALSE not null,
     navbar          $BOOLEAN_SQL_TYPE_FALSE not null,
     templatelang    varchar(20) not null,
-    decorator       varchar(255)
+    decorator       varchar(255) default null
 );
 create index wp_name_idx on webpage( name$!INDEXSIZE );
 create index wp_link_idx on webpage( link$!INDEXSIZE );