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

github.com/nextcloud/twofactor_u2f.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-10-22 17:28:41 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-10-22 17:28:41 +0300
commita0ba70badf04a6573f7788d39b6899fc6a67f47e (patch)
treeb46c38de7dac92447ad18969e7f91fec900b9ef1 /appinfo
parent21fcc531083cf7ebaebdcfbabee3516cc1a0bf34 (diff)
Move over to DB Migrations
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/database.xml65
1 files changed, 0 insertions, 65 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml
deleted file mode 100644
index 04ee794..0000000
--- a/appinfo/database.xml
+++ /dev/null
@@ -1,65 +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*twofactor_u2f_registrations</name>
- <declaration>
- <field>
- <name>id</name>
- <type>integer</type>
- <autoincrement>1</autoincrement>
- <default>0</default>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- <field>
- <name>user_id</name>
- <type>text</type>
- <default></default>
- <notnull>true</notnull>
- <length>64</length>
- </field>
- <field>
- <name>key_handle</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>255</length>
- </field>
- <field>
- <name>public_key</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>255</length>
- </field>
- <field>
- <name>certificate</name>
- <type>text</type>
- <notnull>true</notnull>
- <length>4000</length>
- </field>
- <field>
- <name>counter</name>
- <type>integer</type>
- <notnull>true</notnull>
- <length>4</length>
- </field>
- <field>
- <name>name</name>
- <type>text</type>
- <notnull>false</notnull>
- <length>255</length>
- </field>
-
- <index>
- <name>u2f_registrations_user_id</name>
- <field>
- <name>user_id</name>
- <sorting>ascending</sorting>
- </field>
- </index>
- </declaration>
- </table>
-</database>