[CalendarServer-changes] [9627] CalendarServer/branches/users/glyph/q

source_changes at macosforge.org source_changes at macosforge.org
Sat Aug 11 01:55:03 PDT 2012


Revision: 9627
          http://trac.macosforge.org/projects/calendarserver/changeset/9627
Author:   glyph at apple.com
Date:     2012-08-11 01:55:03 -0700 (Sat, 11 Aug 2012)
Log Message:
-----------
Match schema.

Modified Paths:
--------------
    CalendarServer/branches/users/glyph/q/txdav/common/datastore/sql_schema/current.sql

Property Changed:
----------------
    CalendarServer/branches/users/glyph/q/

Modified: CalendarServer/branches/users/glyph/q/txdav/common/datastore/sql_schema/current.sql
===================================================================
--- CalendarServer/branches/users/glyph/q/txdav/common/datastore/sql_schema/current.sql	2012-08-11 08:55:02 UTC (rev 9626)
+++ CalendarServer/branches/users/glyph/q/txdav/common/datastore/sql_schema/current.sql	2012-08-11 08:55:03 UTC (rev 9627)
@@ -22,7 +22,23 @@
 
 create sequence RESOURCE_ID_SEQ;
 
+-------------------------
+-- Cluster Bookkeeping --
+-------------------------
 
+-- Information about a process connected to this database.
+
+-- Note that this must match the master info schema in twext.enterprise.queue.
+create table MASTER_INFO (
+  HOSTNAME  varchar(255) not null,
+  PID       integer not null,
+  PORT      integer not null,
+  TIME      timestamp not null default timezone('UTC', CURRENT_TIMESTAMP),
+
+  primary key(HOSTNAME, PORT)
+);
+
+
 -------------------
 -- Calendar Home --
 -------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20120811/14f41c45/attachment-0001.html>


More information about the calendarserver-changes mailing list