summaryrefslogtreecommitdiffstats
path: root/tests/lib/db/testschema.xml
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2016-05-20 15:38:20 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-05-20 15:38:20 +0200
commit94ad54ec9b96d41a614fbbad4a97b34c41a6901f (patch)
treef3eb7cdda2704aaf0cd59d58efe66bcbd34cb67d /tests/lib/db/testschema.xml
parent2ef751b1ec28f7b5c7113af60ec8c9fa0ae1cf87 (diff)
downloadnextcloud-server-94ad54ec9b96d41a614fbbad4a97b34c41a6901f.tar.gz
nextcloud-server-94ad54ec9b96d41a614fbbad4a97b34c41a6901f.zip
Move tests/ to PSR-4 (#24731)
* Move a-b to PSR-4 * Move c-d to PSR-4 * Move e+g to PSR-4 * Move h-l to PSR-4 * Move m-r to PSR-4 * Move s-u to PSR-4 * Move files/ to PSR-4 * Move remaining tests to PSR-4 * Remove Test\ from old autoloader
Diffstat (limited to 'tests/lib/db/testschema.xml')
-rw-r--r--tests/lib/db/testschema.xml83
1 files changed, 0 insertions, 83 deletions
diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml
deleted file mode 100644
index dfca920a0ef..00000000000
--- a/tests/lib/db/testschema.xml
+++ /dev/null
@@ -1,83 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<database>
-
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
-
- <charset>utf8</charset>
-
- <table>
-
- <name>*dbprefix*table</name>
-
- <declaration>
- <field>
- <name>integerfield</name>
- <type>integer</type>
- <default>0</default>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <length>4</length>
- </field>
- <field>
- <name>integerfield_default</name>
- <type>integer</type>
- <default>10</default>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- <field>
- <name>textfield</name>
- <type>text</type>
- <default>foo</default>
- <notnull>true</notnull>
- <length>32</length>
- </field>
- <field>
- <name>clobfield</name>
- <type>clob</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>booleanfield</name>
- <type>boolean</type>
- </field>
- <field>
- <name>booleanfield_true</name>
- <type>boolean</type>
- <default>true</default>
- </field>
- <field>
- <name>booleanfield_false</name>
- <type>boolean</type>
- <default>false</default>
- </field>
- <field>
- <name>decimalfield_precision_scale</name>
- <type>decimal</type>
- <precision>12</precision>
- <scale>2</scale>
- </field>
-
- <index>
- <name>index_primary</name>
- <primary>true</primary>
- <unique>true</unique>
- <field>
- <name>integerfield</name>
- <sorting>ascending</sorting>
- </field>
- </index>
-
- <index>
- <name>index_boolean</name>
- <unique>false</unique>
- <field>
- <name>booleanfield</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- </declaration>
- </table>
-</database>