mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +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,
|
weight int8,
|
||||||
timeoutrestart bool,
|
timeoutrestart bool,
|
||||||
setinterfacevar bool,
|
setinterfacevar bool,
|
||||||
|
autopause varchar(128),
|
||||||
PRIMARY KEY (name)
|
PRIMARY KEY (name)
|
||||||
) WITHOUT OIDS;
|
) WITHOUT OIDS;
|
||||||
ALTER TABLE queue_table OWNER TO asterisk;
|
ALTER TABLE queue_table OWNER TO asterisk;
|
||||||
@@ -125,9 +126,11 @@ ALTER TABLE queue_table OWNER TO asterisk;
|
|||||||
drop table queue_member_table;
|
drop table queue_member_table;
|
||||||
CREATE TABLE queue_member_table
|
CREATE TABLE queue_member_table
|
||||||
(
|
(
|
||||||
|
uniqueid serial,
|
||||||
queue_name varchar(128),
|
queue_name varchar(128),
|
||||||
interface varchar(128),
|
interface varchar(128),
|
||||||
penalty int8,
|
penalty int8,
|
||||||
|
paused int8,
|
||||||
PRIMARY KEY (queue_name, interface)
|
PRIMARY KEY (queue_name, interface)
|
||||||
) WITHOUT OIDS;
|
) WITHOUT OIDS;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user