mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-29 15:36:13 +00:00
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) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@172272 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -118,6 +118,7 @@ memberdelay int8,
|
||||
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 @@ ALTER TABLE queue_table OWNER TO asterisk;
|
||||
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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user