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

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkorelstar <korelstar@users.noreply.github.com>2020-05-23 15:12:04 +0300
committerkorelstar <korelstar@users.noreply.github.com>2020-05-31 12:31:05 +0300
commitadcffcdb60968cf6860a8a43a3c815a4989f5fcb (patch)
tree8fc63f8496166e95ab047139d2ae0e7041cecca8 /appinfo
parent564da37e83c2c795a64dcb9ee265f66e6ebbbeb4 (diff)
switch from database.xml to migrations
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/database.xml61
1 files changed, 0 insertions, 61 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100644
index 7fdff79a..00000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<database>
- <name>*dbname*</name>
- <create>true</create>
- <charset>utf8</charset>
- <table>
- <name>*dbprefix*notes_meta</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- </field>
- <field>
- <name>file_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>user_id</name>
- <type>text</type>
- <length>64</length>
- <notnull>true</notnull>
- </field>
- <field>
- <name>last_update</name>
- <type>integer</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>etag</name>
- <type>text</type>
- <length>32</length>
- <notnull>true</notnull>
- </field>
- <index>
- <name>notes_meta_file_id_index</name>
- <field>
- <name>file_id</name>
- </field>
- </index>
- <index>
- <name>notes_meta_user_id_index</name>
- <field>
- <name>user_id</name>
- </field>
- </index>
- <index>
- <name>notes_meta_file_user_index</name>
- <unique>true</unique>
- <field>
- <name>file_id</name>
- </field>
- <field>
- <name>user_id</name>
- </field>
- </index>
- </declaration>
- </table>
-</database>