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.
kamailio/lib/srdb1/schema/acc.xml

89 lines
2.7 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="acc" xmlns:db="http://docbook.org/ns/docbook">
<name>acc</name>
<version>4</version>
<type db="mysql">&MYSQL_TABLE_TYPE;</type>
<description>
<db:para>This table is used by the ACC module to report on transactions - accounted calls. More information is available at: &KAMAILIO_MOD_DOC;acc.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>
<name>method</name>
<type>string</type>
<size>&method_len;</size>
<description>A method is the primary function that a request is meant to invoke on a server.</description>
<default/>
</column>
<column>
<name>from_tag</name>
<type>string</type>
<size>&user_len;</size>
<default/>
<description>The tag parameter serves as a general mechanism to identify a dialog, which is the combination of the Call-ID along with two tags, one from participant in the dialog.</description>
</column>
<column>
<name>to_tag</name>
<type>string</type>
<size>&user_len;</size>
<default/>
<description>The tag parameter serves as a general mechanism to identify a dialog, which is the combination of the Call-ID along with two tags, one from participant in the dialog.</description>
</column>
<column id="callid">
<name>callid</name>
<type>string</type>
<natural/>
<size>&callid_len;</size>
<default/>
<description>Call-ID header field uniquely identifies a particular invitation or all registrations of a particular client. </description>
</column>
<column>
<name>sip_code</name>
<type>string</type>
<size>&sip_code_len;</size>
<default/>
<description>SIP reply code</description>
</column>
<column>
<name>sip_reason</name>
<type>string</type>
<size>&sip_reason_len;</size>
<default/>
<description>SIP reply reason</description>
</column>
<column>
<name>time</name>
<type>datetime</type>
<description>Date and time when this record was written.</description>
</column>
<index>
<name>callid_idx</name>
<colref linkend="callid"/>
</index>
</table>