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

78 lines
1.3 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>
<name>silo</name>
<version>4</version>
<column id="silo.mid">
<name>mid</name>
<type>int</type>
<type db="mysql">INT AUTO_INCREMENT</type>
<type db="postgres">SERIAL</type>
<type db="dbtext">int,auto</type>
</column>
<column>
<name>from_hdr</name>
<type>string</type>
<size>255</size>
</column>
<column>
<name>to_hdr</name>
<type>string</type>
<size>255</size>
</column>
<column>
<name>ruri</name>
<type>string</type>
<size>&uri_len;</size>
</column>
<column>
<name>uid</name>
<name db="oracle">uuid</name>
<type>string</type>
<size>&id_len;</size>
</column>
<column>
<name>inc_time</name>
<type>datetime</type>
<default>1970-01-01 00:00:00</default>
</column>
<column>
<name>exp_time</name>
<type>datetime</type>
<default>1970-01-01 00:00:00</default>
</column>
<column>
<name>ctype</name>
<type>string</type>
<default>text/plain</default>
<size>128</size>
</column>
<column>
<name>body</name>
<type>binary</type>
<default></default>
</column>
<index>
<unique/>
<name>silo_idx1</name>
<colref linkend="silo.mid"/>
</index>
</table>