Author: nunofsantos
Date: 2008-06-03 17:59:26 -0400 (Tue, 03 Jun 2008)
New Revision: 2122
Modified:
mgmt/mint/python/mint/schema.py
mgmt/mint/sql/schema.sql
Log:
bring detachedLifespan back to uint32
Modified: mgmt/mint/python/mint/schema.py
===================================================================
--- mgmt/mint/python/mint/schema.py 2008-06-03 21:51:09 UTC (rev 2121)
+++ mgmt/mint/python/mint/schema.py 2008-06-03 21:59:26 UTC (rev 2122)
@@ -513,7 +513,7 @@
name = StringCol(length=1000, default=None)
channelId = SmallIntCol(default=None)
clientConnection = ForeignKey('ClientConnection', cascade='null',
default=None)
- detachedLifespan = BigIntCol(default=None)
+ detachedLifespan = IntCol(default=None)
classInfos = dict() # brokerId => classInfo
Modified: mgmt/mint/sql/schema.sql
===================================================================
--- mgmt/mint/sql/schema.sql 2008-06-03 21:51:09 UTC (rev 2121)
+++ mgmt/mint/sql/schema.sql 2008-06-03 21:59:26 UTC (rev 2122)
@@ -316,7 +316,7 @@
name VARCHAR(1000),
channel_id SMALLINT,
client_connection_id INT,
- detached_lifespan BIGINT
+ detached_lifespan INT
);
CREATE TABLE session_stats (
Show replies by date