diff options
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index c7e1e072a8e..545628a9233 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -2113,4 +2113,36 @@ </declaration> </table> + <table> + + <name>*dbprefix*accounts</name> + + <declaration> + <field> + <name>uid</name> + <type>text</type> + <default></default> + <notnull>true</notnull> + <length>64</length> + </field> + <field> + <name>data</name> + <type>clob</type> + <default></default> + <notnull>true</notnull> + </field> + + <index> + <name>uid_index</name> + <primary>true</primary> + <unique>true</unique> + <field> + <name>uid</name> + <sorting>ascending</sorting> + </field> + </index> + + </declaration> + </table> + </database> |