mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.4 KiB
86 lines
2.4 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE table PUBLIC "-//kamailio.org//DTD DBSchema V1.1//EN"
|
|
"http://kamailio.org/pub/kamailio/dbschema/dtd/1.1/dbschema.dtd" [
|
|
|
|
<!ENTITY % entities SYSTEM "entities.xml">
|
|
%entities;
|
|
|
|
]>
|
|
|
|
<table id="dialplan" xmlns:db="http://docbook.org/ns/docbook">
|
|
<name>dialplan</name>
|
|
<version>1</version>
|
|
<type db="mysql">&MYSQL_TABLE_TYPE;</type>
|
|
<description>
|
|
<db:para>This table is used by the dialplan module for the translation rules. More information is available at: &KAMAILIO_MOD_DOC;dialplan.html
|
|
</db:para>
|
|
</description>
|
|
|
|
<column id="id">
|
|
<name>id</name>
|
|
<type>unsigned int</type>
|
|
<size>&table_id_len;</size>
|
|
<autoincrement/>
|
|
<primary/>
|
|
<type db="dbtext">int,auto</type>
|
|
<description>unique ID</description>
|
|
</column>
|
|
|
|
<column id="dpid">
|
|
<name>dpid</name>
|
|
<type>int</type>
|
|
<size>11</size>
|
|
<description>Dialplan ID.</description>
|
|
</column>
|
|
|
|
<column id="pr">
|
|
<name>pr</name>
|
|
<type>int</type>
|
|
<size>11</size>
|
|
<description>Priority of rule.</description>
|
|
</column>
|
|
|
|
<column id="match_op">
|
|
<name>match_op</name>
|
|
<type>int</type>
|
|
<size>11</size>
|
|
<description>Matching operator for rule (0-equal, 1-regexp).</description>
|
|
</column>
|
|
|
|
<column id="match_exp">
|
|
<name>match_exp</name>
|
|
<type>string</type>
|
|
<size>64</size>
|
|
<description>Matching expresion (regexp or string).</description>
|
|
</column>
|
|
|
|
<column id="match_len">
|
|
<name>match_len</name>
|
|
<type>int</type>
|
|
<size>11</size>
|
|
<description>Length of the matching expresion (used only for equal operator).</description>
|
|
</column>
|
|
|
|
<column id="subst_exp">
|
|
<name>subst_exp</name>
|
|
<type>string</type>
|
|
<size>64</size>
|
|
<description>Substitution expresion.</description>
|
|
</column>
|
|
|
|
<column id="repl_exp">
|
|
<name>repl_exp</name>
|
|
<type>string</type>
|
|
<size>32</size>
|
|
<description>Replacement expresion (sed like).</description>
|
|
</column>
|
|
|
|
<column id="attrs">
|
|
<name>attrs</name>
|
|
<type>string</type>
|
|
<size>32</size>
|
|
<description>General attributes string to be returned in case of rule matching.</description>
|
|
</column>
|
|
|
|
</table>
|