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.
69 lines
1.6 KiB
69 lines
1.6 KiB
<?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">
|
|
|
|
<name>presentity_extensions</name>
|
|
<description>
|
|
Table holding extension elements (non-PIDF) published directly in
|
|
<presence>.
|
|
</description>
|
|
|
|
<!-- related to the version of presence snapshot -->
|
|
<version>5</version>
|
|
|
|
<column id="presextensions.dbid">
|
|
<name>dbid</name>
|
|
<type>string</type>
|
|
<size>64</size>
|
|
<description>Generated ID used for unique identification.</description>
|
|
</column>
|
|
|
|
<!-- foreign key (presentity) -->
|
|
<column>
|
|
<name>pres_id</name>
|
|
<type>string</type>
|
|
<size>64</size>
|
|
<description>Presentity ID for which is given extension element.</description>
|
|
</column>
|
|
|
|
<!-- received in PUBLISH with this entity tag -->
|
|
<column>
|
|
<name>etag</name>
|
|
<type>string</type>
|
|
<size>64</size>
|
|
<description>Entity tag used for note publication.</description>
|
|
</column>
|
|
|
|
<!-- serialized XML element -->
|
|
<column>
|
|
<name>element</name>
|
|
<type>binary</type>
|
|
<description>Whole extension element in serialized form.</description>
|
|
</column>
|
|
|
|
<!-- expiration time -->
|
|
<column>
|
|
<name>expires</name>
|
|
<type>datetime</type>
|
|
<default>2005-12-07 08:13:15</default>
|
|
<description>
|
|
Expiration value of extension element i.e. value of Expires header used
|
|
in PUBLISH.
|
|
</description>
|
|
</column>
|
|
|
|
<index>
|
|
<name>presextensions_idx1</name>
|
|
<colref linkend="presextensions.dbid"/>
|
|
<unique/>
|
|
</index>
|
|
|
|
</table>
|