You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ba...@apache.org on 2005/12/11 21:18:02 UTC

svn commit: r356006 - in /incubator/roller/branches/roller_2.0/metadata/database: 110-to-120-migration-raw.sql 120-to-130-migration-raw.sql

Author: bayard
Date: Sun Dec 11 12:17:59 2005
New Revision: 356006

URL: http://svn.apache.org/viewcvs?rev=356006&view=rev
Log:
Double quotes don't work in postgres, so switching to single quotes

Modified:
    incubator/roller/branches/roller_2.0/metadata/database/110-to-120-migration-raw.sql
    incubator/roller/branches/roller_2.0/metadata/database/120-to-130-migration-raw.sql

Modified: incubator/roller/branches/roller_2.0/metadata/database/110-to-120-migration-raw.sql
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/metadata/database/110-to-120-migration-raw.sql?rev=356006&r1=356005&r2=356006&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/metadata/database/110-to-120-migration-raw.sql (original)
+++ incubator/roller/branches/roller_2.0/metadata/database/110-to-120-migration-raw.sql Sun Dec 11 12:17:59 2005
@@ -2,7 +2,7 @@
     name     varchar(255) not null primary key,
     value    @TEXT_SQL_TYPE@
 );
-insert into roller_properties (name,value) values ("roller.database.version","120");
+insert into roller_properties (name,value) values ('roller.database.version','120');
 
 create table rag_group_subscription (
     id               varchar(48) not null primary key,

Modified: incubator/roller/branches/roller_2.0/metadata/database/120-to-130-migration-raw.sql
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/metadata/database/120-to-130-migration-raw.sql?rev=356006&r1=356005&r2=356006&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/metadata/database/120-to-130-migration-raw.sql (original)
+++ incubator/roller/branches/roller_2.0/metadata/database/120-to-130-migration-raw.sql Sun Dec 11 12:17:59 2005
@@ -1,3 +1,3 @@
-update roller_properties set value="130" where name="roller.database.version";
+update roller_properties set value='130' where name='roller.database.version';
 update website set editortheme='custom';
-@ALTER_DEFAULTPAGEID_ALLOW_NULL@;
\ No newline at end of file
+@ALTER_DEFAULTPAGEID_ALLOW_NULL@;