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/presentity_notes.xml

75 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_notes</name>
<description>
Table holding &lt;note&gt; elements published directly in &lt;presence&gt;
element i.e. notes related to whole presentity not only for
tuples.
</description>
<!-- related to the version of presence snapshot -->
<version>5</version>
<column id="presnotes.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 note.</description>
</column>
<column>
<name>etag</name>
<type>string</type>
<size>64</size>
<description>Entity tag used for note publication.</description>
</column>
<column>
<name>note</name>
<type>string</type>
<size>128</size>
<description>String value of note element.</description>
</column>
<column>
<name>lang</name>
<type>string</type>
<size>64</size>
<description>Lang attribute value of note element.</description>
</column>
<column>
<name>expires</name>
<type>datetime</type>
<default>2005-12-07 08:13:15</default>
<description>
Expiration value of note element i.e. value of Expires header used in
PUBLISH.
</description>
</column>
<index>
<name>pnotes_idx1</name>
<colref linkend="presnotes.dbid"/>
<unique/>
</index>
</table>