diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-08 22:26:59 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-08 22:26:59 -0700 |
commit | e6f0ca7a075d345b8da6871c42c0947f55e0867f (patch) | |
tree | f636214daadc9626c9b9d23443e0e6f487953d0c /samples/OAuthServiceProvider/App_Code/DataClasses.dbml | |
parent | 67d4881942b6a145d299a8a32eee8f50ae09cc70 (diff) | |
download | DotNetOpenAuth-e6f0ca7a075d345b8da6871c42c0947f55e0867f.zip DotNetOpenAuth-e6f0ca7a075d345b8da6871c42c0947f55e0867f.tar.gz DotNetOpenAuth-e6f0ca7a075d345b8da6871c42c0947f55e0867f.tar.bz2 |
Refactored OAuth service provider interfaces to better suite token and consumer queries.
Diffstat (limited to 'samples/OAuthServiceProvider/App_Code/DataClasses.dbml')
-rw-r--r-- | samples/OAuthServiceProvider/App_Code/DataClasses.dbml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/samples/OAuthServiceProvider/App_Code/DataClasses.dbml b/samples/OAuthServiceProvider/App_Code/DataClasses.dbml index c05df5f..78518c2 100644 --- a/samples/OAuthServiceProvider/App_Code/DataClasses.dbml +++ b/samples/OAuthServiceProvider/App_Code/DataClasses.dbml @@ -25,6 +25,9 @@ <Column Name="ConsumerId" Type="System.Int32" DbType="Int NOT NULL IDENTITY" IsPrimaryKey="true" IsDbGenerated="true" CanBeNull="false" /> <Column Name="ConsumerKey" Type="System.String" DbType="NVarChar(50) NOT NULL" CanBeNull="false" /> <Column Name="ConsumerSecret" Type="System.String" DbType="NVarChar(50) NOT NULL" CanBeNull="false" /> + <Column Member="Callback" Type="System.String" CanBeNull="true" /> + <Column Member="VerificationCodeFormat" Type="DotNetOpenAuth.OAuth.VerificationCodeFormat" CanBeNull="false" /> + <Column Member="VerificationCodeLength" Type="System.Int32" CanBeNull="false" /> <Association Name="OAuthConsumer_OAuthToken" Member="OAuthTokens" ThisKey="ConsumerId" OtherKey="ConsumerId" Type="OAuthToken" /> </Type> </Table> |