diff options
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/db_structure.xml b/db_structure.xml index 6d1cf6973c5..95acefcfaee 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -1180,5 +1180,44 @@ </table> + <table> + + <!-- + Table for storing high-level locking + --> + <name>*dbprefix*locks</name> + + <declaration> + + <field> + <name>lock</name> + <type>integer</type> + <default>0</default> + <notnull>true</notnull> + <length>4</length> + </field> + + <field> + <name>path</name> + <type>text</type> + <notnull>true</notnull> + <length>64</length> + </field> + + + <index> + <primary>true</primary> + <unique>true</unique> + <name>lock_path_index</name> + <field> + <name>path</name> + <sorting>ascending</sorting> + </field> + </index> + + </declaration> + + </table> + </database> |