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

« back to all changes in this revision

Viewing changes to utils/kamctl/mysql/drouting-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:
7
7
    pri_prefix VARCHAR(64) DEFAULT NULL,
8
8
    attrs VARCHAR(255) DEFAULT NULL,
9
9
    description VARCHAR(128) DEFAULT '' NOT NULL
10
 
) ENGINE=MyISAM;
 
10
);
11
11
 
12
12
INSERT INTO version (table_name, table_version) values ('dr_rules','3');
13
13
CREATE TABLE dr_rules (
19
19
    routeid VARCHAR(64) NOT NULL,
20
20
    gwlist VARCHAR(255) NOT NULL,
21
21
    description VARCHAR(128) DEFAULT '' NOT NULL
22
 
) ENGINE=MyISAM;
 
22
);
23
23
 
24
24
INSERT INTO version (table_name, table_version) values ('dr_gw_lists','1');
25
25
CREATE TABLE dr_gw_lists (
26
26
    id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
27
27
    gwlist VARCHAR(255) NOT NULL,
28
28
    description VARCHAR(128) DEFAULT '' NOT NULL
29
 
) ENGINE=MyISAM;
 
29
);
30
30
 
31
31
INSERT INTO version (table_name, table_version) values ('dr_groups','2');
32
32
CREATE TABLE dr_groups (
35
35
    domain VARCHAR(128) DEFAULT '' NOT NULL,
36
36
    groupid INT(11) UNSIGNED DEFAULT 0 NOT NULL,
37
37
    description VARCHAR(128) DEFAULT '' NOT NULL
38
 
) ENGINE=MyISAM;
 
38
);
39
39