~ubuntu-branches/debian/sid/kamailio/sid

« back to all changes in this revision

Viewing changes to utils/kamctl/postgres/rtpproxy-create.sql

  • Committer: Package Import Robot
  • Author(s): Victor Seva
  • Date: 2014-01-06 11:47:13 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20140106114713-t8xidp4arzrnyeya
Tags: 4.1.1-1
* New upstream release
* debian/patches:
  - add upstream fixes
* Added tls outbound websocket autheph dnssec modules
  - openssl exception added to their license
* removing sparc and ia64 from supported archs
  for mono module (Closes: #728915)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INSERT INTO version (table_name, table_version) values ('rtpproxy','1');
 
2
CREATE TABLE rtpproxy (
 
3
    id SERIAL PRIMARY KEY NOT NULL,
 
4
    setid VARCHAR(32) DEFAULT 00 NOT NULL,
 
5
    url VARCHAR(64) DEFAULT '' NOT NULL,
 
6
    flags INTEGER DEFAULT 0 NOT NULL,
 
7
    weight INTEGER DEFAULT 1 NOT NULL,
 
8
    description VARCHAR(64) DEFAULT '' NOT NULL
 
9
);
 
10