Add table to hold OAuth scopes

This commit is contained in:
Tom Needham 2012-08-31 12:34:48 +00:00
parent 67c2d56be8
commit b650c7c2a7

View file

@ -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>