Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-06-17 22:05:09 +0300
committerJulius Härtl <jus@bitgrid.net>2019-06-17 22:05:09 +0300
commit8a2a2402cdc8d5f2ace1fc4a6c3bc0c29a0cc600 (patch)
treeb5ce09f2b4a2b34ea616844ae029e63d32176914 /appinfo
parent106190fdcee4fd3e3d0aebfaca11bc54882a53ed (diff)
Remove database.xml
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/database.xml164
1 files changed, 0 insertions, 164 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100644
index 95d1ccc52..000000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,164 +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*text_documents</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
- <field>
- <name>current_version</name>
- <type>integer</type>
- <notnull>true</notnull>
- <unsigned>true</unsigned>
- <length>4</length>
- <default>0</default>
- </field>
- <field>
- <name>last_saved_version</name>
- <type>integer</type>
- <notnull>true</notnull>
- <unsigned>true</unsigned>
- <length>4</length>
- <default>0</default>
- </field>
- <field>
- <name>last_saved_version_time</name>
- <type>integer</type>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
- <field>
- <name>last_saved_version_etag</name>
- <type>text</type>
- <length>64</length>
- </field>
- <field>
- <name>base_version_etag</name>
- <type>text</type>
- <length>64</length>
- </field>
- </declaration>
- </table>
-
- <table>
- <name>*dbprefix*text_sessions</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- </field>
- <field>
- <name>guest_name</name>
- <type>text</type>
- <length>64</length>
- </field>
- <field>
- <name>color</name>
- <type>text</type>
- <length>64</length>
- </field>
- <field>
- <name>token</name>
- <type>text</type>
- <length>64</length>
- </field>
- <field>
- <name>document_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- <field>
- <name>last_contact</name>
- <type>integer</type>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
-
- <index>
- <name>rd_session_token_idx</name>
- <unique>false</unique>
- <field>
- <name>token</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- </declaration>
- </table>
-
- <table>
- <name>*dbprefix*text_steps</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <autoincrement>1</autoincrement>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
- <field>
- <name>document_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
- <field>
- <name>session_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <unsigned>true</unsigned>
- <length>4</length>
- </field>
- <field>
- <name>data</name>
- <type>clob</type>
- </field>
- <field>
- <name>version</name>
- <type>integer</type>
- <notnull>true</notnull>
- <unsigned>true</unsigned>
- <length>4</length>
- <default>0</default>
- </field>
-
- <index>
- <name>rd_steps_did_idx</name>
- <unique>false</unique>
- <field>
- <name>document_id</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- <index>
- <name>rd_steps_version_idx</name>
- <unique>false</unique>
- <field>
- <name>version</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- </declaration>
- </table>
-</database>