summaryrefslogtreecommitdiffstats
path: root/apps/oauth2/appinfo/database.xml
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-12-07 20:08:11 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-12-10 13:23:58 +0100
commitd7223ebf4d209230e761a4a75728b3f2ec794b66 (patch)
treedbac183bb5183cacbd8f997cc1bd65ee1cbf8d6b /apps/oauth2/appinfo/database.xml
parentb3de7a7d0662707ae93f408cf31a736502bfd122 (diff)
downloadnextcloud-server-d7223ebf4d209230e761a4a75728b3f2ec794b66.tar.gz
nextcloud-server-d7223ebf4d209230e761a4a75728b3f2ec794b66.zip
OAuth2: Move to migrations
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/oauth2/appinfo/database.xml')
-rw-r--r--apps/oauth2/appinfo/database.xml100
1 files changed, 0 insertions, 100 deletions
diff --git a/apps/oauth2/appinfo/database.xml b/apps/oauth2/appinfo/database.xml
deleted file mode 100644
index db32e0cf97d..00000000000
--- a/apps/oauth2/appinfo/database.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<database xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/database.xsd">
- <name>*dbname*</name>
- <create>true</create>
- <overwrite>false</overwrite>
- <charset>utf8</charset>
- <table>
- <name>*dbprefix*oauth2_clients</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <unsigned>true</unsigned>
- <primary>true</primary>
- </field>
- <field>
- <name>name</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>redirect_uri</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>2000</length>
- </field>
- <field>
- <name>client_identifier</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>secret</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <index>
- <name>oauth2_client_id_idx</name>
- <unique>false</unique>
- <field>
- <name>client_identifier</name>
- </field>
- </index>
- </declaration>
- </table>
- <table>
- <name>*dbprefix*oauth2_access_tokens</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <notnull>true</notnull>
- <autoincrement>true</autoincrement>
- <unsigned>true</unsigned>
- <primary>true</primary>
- </field>
- <field>
- <name>token_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>client_id</name>
- <type>integer</type>
- <notnull>true</notnull>
- </field>
- <field>
- <name>hashed_code</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>128</length>
- </field>
- <field>
- <name>encrypted_token</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>786</length>
- </field>
- <index>
- <name>oauth2_access_hash_idx</name>
- <unique>true</unique>
- <field>
- <name>hashed_code</name>
- </field>
- </index>
- <index>
- <name>oauth2_access_client_id_idx</name>
- <unique>false</unique>
- <field>
- <name>client_id</name>
- </field>
- </index>
- </declaration>
- </table>
-</database>