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 2005/12/01 20:57:04 UTC

svn commit: r350308 - /incubator/roller/trunk/metadata/database/createdb-raw.sql

Author: snoopdave
Date: Thu Dec  1 11:57:00 2005
New Revision: 350308

URL: http://svn.apache.org/viewcvs?rev=350308&view=rev
Log:
Column name fix in createdb, thanks Allen

Modified:
    incubator/roller/trunk/metadata/database/createdb-raw.sql

Modified: incubator/roller/trunk/metadata/database/createdb-raw.sql
URL: http://svn.apache.org/viewcvs/incubator/roller/trunk/metadata/database/createdb-raw.sql?rev=350308&r1=350307&r2=350308&view=diff
==============================================================================
--- incubator/roller/trunk/metadata/database/createdb-raw.sql (original)
+++ incubator/roller/trunk/metadata/database/createdb-raw.sql Thu Dec  1 11:57:00 2005
@@ -108,10 +108,10 @@
     pinnedtomain      @BOOLEAN_SQL_TYPE_FALSE@ not null,
     isenabled         @BOOLEAN_SQL_TYPE_TRUE@ not null,
     datecreated      timestamp not null,
-    blacklist               @TEXT_SQL_TYPE@,
-    defaultallowcomments    @BOOLEAN_SQL_TYPE_TRUE@ not null,
-    defaultallowcommentdays integer default 7 not null,
-    commentmod              @BOOLEAN_SQL_TYPE_FALSE@ not null    
+    blacklist            @TEXT_SQL_TYPE@,
+    defaultallowcomments @BOOLEAN_SQL_TYPE_TRUE@ not null,
+    defaultcommentdays   integer default 7 not null,
+    commentmod           @BOOLEAN_SQL_TYPE_FALSE@ not null    
 );
 create index ws_userid_idx    on website(userid);
 create index ws_isenabled_idx on website(isenabled);