summaryrefslogtreecommitdiffstats
path: root/tests/data/db_structure2.xml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/data/db_structure2.xml')
-rw-r--r--tests/data/db_structure2.xml137
1 files changed, 0 insertions, 137 deletions
diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml
deleted file mode 100644
index 568d90ab0a9..00000000000
--- a/tests/data/db_structure2.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<database>
-
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
-
- <charset>utf8</charset>
-
- <table>
-
- <name>*dbprefix*cntcts_addrsbks</name>
-
- <declaration>
-
- <field>
- <name>id</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
-
- <field>
- <name>userid</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>255</length>
- </field>
-
- <field>
- <name>displayname</name>
- <type>text</type>
- <default></default>
- <notnull>false</notnull>
- <length>255</length>
- </field>
-
- <field>
- <name>uri</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>200</length>
- </field>
-
- <field>
- <name>description</name>
- <type>text</type>
- <notnull>false</notnull>
- <length>1024</length>
- </field>
-
- <field>
- <name>ctag</name>
- <type>integer</type>
- <default>1</default>
- <notnull>true</notnull>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
-
- <field>
- <name>active</name>
- <type>integer</type>
- <default>1</default>
- <notnull>true</notnull>
- <length>1</length>
- </field>
-
- </declaration>
-
- </table>
-
- <table>
- <name>*dbprefix*timestamp</name>
- <declaration>
- <field>
- <name>id</name>
- <autoincrement>1</autoincrement>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <length>4</length>
- </field>
-
- <field>
- <name>timestamptest</name>
- <type>timestamp</type>
- <default></default>
- <notnull>false</notnull>
- </field>
- </declaration>
- </table>
-
- <table>
- <name>*dbprefix*decimal</name>
- <declaration>
- <field>
- <name>id</name>
- <autoincrement>1</autoincrement>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <length>4</length>
- </field>
-
- <field>
- <name>decimaltest</name>
- <type>decimal</type>
- <default/>
- <notnull>true</notnull>
- <precision>12</precision>
- <scale>2</scale>
- </field>
- </declaration>
- </table>
-
- <table>
- <name>*dbprefix*migratekeyword</name>
-
- <declaration>
-
- <field>
- <name>select</name>
- <type>text</type>
- <default></default>
- <notnull>false</notnull>
- <length>255</length>
- </field>
- </declaration>
- </table>
-
-</database>