/usr/share/opensips/sqlite/carrierroute-create.sql is in opensips-sqlite-module 2.2.2-3build4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | INSERT INTO version (table_name, table_version) values ('carrierroute','3');
CREATE TABLE carrierroute (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
carrier INTEGER DEFAULT 0 NOT NULL,
domain CHAR(64) DEFAULT '' NOT NULL,
scan_prefix CHAR(64) DEFAULT '' NOT NULL,
flags INTEGER DEFAULT 0 NOT NULL,
mask INTEGER DEFAULT 0 NOT NULL,
prob FLOAT DEFAULT 0 NOT NULL,
strip INTEGER DEFAULT 0 NOT NULL,
rewrite_host CHAR(128) DEFAULT '' NOT NULL,
rewrite_prefix CHAR(64) DEFAULT '' NOT NULL,
rewrite_suffix CHAR(64) DEFAULT '' NOT NULL,
description CHAR(255) DEFAULT NULL
);
INSERT INTO version (table_name, table_version) values ('carrierfailureroute','2');
CREATE TABLE carrierfailureroute (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
carrier INTEGER DEFAULT 0 NOT NULL,
domain CHAR(64) DEFAULT '' NOT NULL,
scan_prefix CHAR(64) DEFAULT '' NOT NULL,
host_name CHAR(128) DEFAULT '' NOT NULL,
reply_code CHAR(3) DEFAULT '' NOT NULL,
flags INTEGER DEFAULT 0 NOT NULL,
mask INTEGER DEFAULT 0 NOT NULL,
next_domain CHAR(64) DEFAULT '' NOT NULL,
description CHAR(255) DEFAULT NULL
);
INSERT INTO version (table_name, table_version) values ('route_tree','2');
CREATE TABLE route_tree (
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
carrier CHAR(64) DEFAULT NULL
);
|