From b650c7c2a7a13cc5c3b680f8c1863ff196a8ea02 Mon Sep 17 00:00:00 2001 From: Tom Needham <needham.thomas@gmail.com> Date: Fri, 31 Aug 2012 12:34:48 +0000 Subject: [PATCH] Add table to hold OAuth scopes --- db_structure.xml | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/db_structure.xml b/db_structure.xml index 5c14f5dcac..7130c85599 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -419,7 +419,13 @@ </field> <field> - <name>callback</name> + <name>callback_success</name> + <type>text</type> + <length>255</length> + </field> + + <field> + <name>callback_fail</name> <type>text</type> <length>255</length> </field> @@ -475,6 +481,34 @@ </table> + <table> + + <name>*dbprefix*oauth_scopes</name> + + <declaration> + + <field> + <name>key</name> + <type>text</type> + <length>40</length> + </field> + + <field> + <name>type</name> + <type>text</type> + <length>7</length> + </field> + + <field> + <name>scopes</name> + <type>text</type> + <length>255</length> + </field> + + </declaration> + + </table> + <table> <name>*dbprefix*oauth_tokens</name> -- GitLab