[asterisk-commits] lmadsen: branch 1.6.0 r172273 - in /branches/1.6.0: ./ contrib/scripts/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jan 29 07:51:48 CST 2009


Author: lmadsen
Date: Thu Jan 29 07:51:48 2009
New Revision: 172273

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=172273
Log:
Merged revisions 172271 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r172271 | lmadsen | 2009-01-29 08:47:27 -0500 (Thu, 29 Jan 2009) | 5 lines
  
  The realtime_pgsql.sql script is missing a couple of fields.
  closes issue #14339)
  Reported by: fiddur
  Patches:
        realtime_pgsql.sql.diff uploaded by fiddur (license 678)
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/contrib/scripts/realtime_pgsql.sql

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/contrib/scripts/realtime_pgsql.sql
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/contrib/scripts/realtime_pgsql.sql?view=diff&rev=172273&r1=172272&r2=172273
==============================================================================
--- branches/1.6.0/contrib/scripts/realtime_pgsql.sql (original)
+++ branches/1.6.0/contrib/scripts/realtime_pgsql.sql Thu Jan 29 07:51:48 2009
@@ -118,6 +118,7 @@
 weight int8,
 timeoutrestart bool,
 setinterfacevar bool,
+autopause varchar(128),
 PRIMARY KEY (name)
 ) WITHOUT OIDS;
 ALTER TABLE queue_table OWNER TO asterisk;
@@ -125,9 +126,11 @@
 drop table queue_member_table;
 CREATE TABLE queue_member_table
 (
+uniqueid serial,
 queue_name varchar(128),
 interface varchar(128),
 penalty int8,
+paused int8,
 PRIMARY KEY (queue_name, interface)
 ) WITHOUT OIDS;
 




More information about the asterisk-commits mailing list