|
@@ -0,0 +1,58 @@
|
|
|
+<?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="s_cscf_capabilities" xmlns:db="http://docbook.org/ns/docbook">
|
|
|
+ <name>s_cscf_capabilities</name>
|
|
|
+ <version>1</version>
|
|
|
+ <type db="mysql">&MYSQL_TABLE_TYPE;</type>
|
|
|
+ <description>
|
|
|
+ <db:para>Table for SCF capabilities in IMS. More information at:
|
|
|
+ <itemizedlist>
|
|
|
+ <listitem>
|
|
|
+ <ulink url="&KAMAILIO_MOD_DOC;ims_icscf.html">&KAMAILIO_MOD_DOC;ims_icscf.html</ulink>.
|
|
|
+ </listitem>
|
|
|
+ </itemizedlist>
|
|
|
+ </db:para>
|
|
|
+ </description>
|
|
|
+
|
|
|
+ <column id="id">
|
|
|
+ <name>id</name>
|
|
|
+ <type>int</type>
|
|
|
+ <size>&table_id_len;</size>
|
|
|
+ <autoincrement/>
|
|
|
+ <primary/>
|
|
|
+ <type db="dbtext">int,auto</type>
|
|
|
+ <description>Unique ID for the capability</description>
|
|
|
+ </column>
|
|
|
+
|
|
|
+ <column id="id_s_cscf">
|
|
|
+ <name>id_s_cscf</name>
|
|
|
+ <type>int</type>
|
|
|
+ <size>11</size>
|
|
|
+ <default>0</default>
|
|
|
+ <description>ID of the associated SCF</description>
|
|
|
+ </column>
|
|
|
+
|
|
|
+ <column id="capability">
|
|
|
+ <name>capability</name>
|
|
|
+ <type>int</type>
|
|
|
+ <size>11</size>
|
|
|
+ <default>0</default>
|
|
|
+ <description>Capability value</description>
|
|
|
+ </column>
|
|
|
+
|
|
|
+ <index>
|
|
|
+ <name>idx_capability</name>
|
|
|
+ <colref linkend="capability"/>
|
|
|
+ </index>
|
|
|
+ <index>
|
|
|
+ <name>idx_id_s_cscf</name>
|
|
|
+ <colref linkend="id_s_cscf"/>
|
|
|
+ </index>
|
|
|
+</table>
|