123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?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>
|