[CalendarServer-changes] [14252] CalendarServer/trunk

source_changes at macosforge.org source_changes at macosforge.org
Tue Jan 6 13:36:44 PST 2015


Revision: 14252
          http://trac.calendarserver.org//changeset/14252
Author:   cdaboo at apple.com
Date:     2015-01-06 13:36:43 -0800 (Tue, 06 Jan 2015)
Log Message:
-----------
Latest twext and resulting schema upgrade fix.

Modified Paths:
--------------
    CalendarServer/trunk/requirements-stable.txt
    CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/oracle-dialect/upgrade_from_6_to_7.sql
    CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/postgres-dialect/upgrade_from_6_to_7.sql

Modified: CalendarServer/trunk/requirements-stable.txt
===================================================================
--- CalendarServer/trunk/requirements-stable.txt	2015-01-06 21:35:29 UTC (rev 14251)
+++ CalendarServer/trunk/requirements-stable.txt	2015-01-06 21:36:43 UTC (rev 14252)
@@ -5,7 +5,7 @@
 # For CalendarServer development, don't try to get these projects from PyPI; use svn.
 
 -e .
--e svn+http://svn.calendarserver.org/repository/calendarserver/twext/trunk@14248#egg=twextpy
+-e svn+http://svn.calendarserver.org/repository/calendarserver/twext/trunk@14251#egg=twextpy
 -e svn+http://svn.calendarserver.org/repository/calendarserver/PyKerberos/trunk@13420#egg=kerberos
 -e svn+http://svn.calendarserver.org/repository/calendarserver/PyCalendar/trunk@14245#egg=pycalendar
 

Modified: CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/oracle-dialect/upgrade_from_6_to_7.sql
===================================================================
--- CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/oracle-dialect/upgrade_from_6_to_7.sql	2015-01-06 21:35:29 UTC (rev 14251)
+++ CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/oracle-dialect/upgrade_from_6_to_7.sql	2015-01-06 21:36:43 UTC (rev 14252)
@@ -20,7 +20,7 @@
 
 -- Just need to add one column
 alter table CALENDAR_HOME
- add ("DATAVERSION" integer default 1 null);
+ add ("DATAVERSION" integer default 1 not null);
  
 -- Need to add timestamp columns
 alter table CALENDAR_HOME_METADATA
@@ -34,7 +34,7 @@
 
 -- Just need to add one column
 alter table ADDRESSBOOK_HOME
- add ("DATAVERSION" integer default 1 null);
+ add ("DATAVERSION" integer default 1 not null);
  
 -- Need to add timestamp columns
 alter table ADDRESSBOOK_HOME_METADATA

Modified: CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/postgres-dialect/upgrade_from_6_to_7.sql
===================================================================
--- CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/postgres-dialect/upgrade_from_6_to_7.sql	2015-01-06 21:35:29 UTC (rev 14251)
+++ CalendarServer/trunk/txdav/common/datastore/sql_schema/upgrades/postgres-dialect/upgrade_from_6_to_7.sql	2015-01-06 21:36:43 UTC (rev 14252)
@@ -20,7 +20,7 @@
 
 -- Just need to add one column
 alter table CALENDAR_HOME
- add column DATAVERSION integer default 1 null;
+ add column DATAVERSION integer default 1 not null;
  
 -- Need to add timestamp columns
 alter table CALENDAR_HOME_METADATA
@@ -33,7 +33,7 @@
 
 -- Just need to add one column
 alter table ADDRESSBOOK_HOME
- add column DATAVERSION integer default 1 null;
+ add column DATAVERSION integer default 1 not null;
  
 -- Need to add timestamp columns
 alter table ADDRESSBOOK_HOME_METADATA
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20150106/d0fd4913/attachment-0001.html>


More information about the calendarserver-changes mailing list