Skip to content
Snippets Groups Projects
Commit b650c7c2 authored by Tom Needham's avatar Tom Needham
Browse files

Add table to hold OAuth scopes

parent 67c2d56b
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment