mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-20 12:20:12 +00:00
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/trunk@172271 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