circles/appinfo/database.xml
Maxence Lange 039326fd2b switching to circles
improved version of teams
2017-02-16 00:04:00 -01:00

93 lines
1.6 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
<name>*dbprefix*circles_groups</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<notnull>true</notnull>
<autoincrement>true</autoincrement>
<unsigned>true</unsigned>
<primary>true</primary>
<length>8</length>
</field>
<field>
<name>name</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>description</name>
<type>text</type>
<notnull>true</notnull>
<length>128</length>
</field>
<field>
<name>type</name>
<type>text</type>
<notnull>true</notnull>
<length>8</length>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*circles_members</name>
<declaration>
<field>
<name>group_id</name>
<type>integer</type>
<notnull>true</notnull>
<unsigned>true</unsigned>
<length>8</length>
</field>
<field>
<name>user_id</name>
<type>text</type>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>level</name>
<type>integer</type>
<notnull>true</notnull>
<length>1</length>
</field>
<field>
<name>status</name>
<type>text</type>
<notnull>true</notnull>
<length>8</length>
</field>
<index>
<name>unique_membership</name>
<primary>true</primary>
<unique>true</unique>
<field>
<name>group_id</name>
</field>
<field>
<name>user_id</name>
</field>
</index>
</declaration>
</table>
</database>