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/srdb2/schema/rls_vs.xml

45 lines
962 B

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE table PUBLIC "-//iptel.org//DTD DBSchema V1.0//EN"
"http://iptel.org/dbschema/dtd/1.0/dbschema.dtd" [
<!ENTITY % entities SYSTEM "entities.xml">
%entities;
]>
<table role="presence" xmlns:db="http://docbook.org/ns/docbook">
<name>rls_vs</name>
<version>1</version>
<!-- table holding information about virtual subscriptions created
in the context of resource list subscriptions -->
<!-- id of virtual subscription (generated) -->
<column id="rls_vs.id">
<name>id</name>
<type>string</type>
<size>48</size>
</column>
<!-- id of "parent" resource list subscription
(related to rls_susbscription.id) -->
<column>
<name>rls_id</name>
<type>string</type>
<size>48</size>
</column>
<column>
<name>uri</name>
<type>string</type>
<size>&uri_len;</size>
</column>
<index>
<name>rls_vs_key</name>
<colref linkend="rls_vs.id"/>
<unique/>
</index>
</table>