Merge remote-tracking branch 'refs/remotes/tsyesika/master'
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 15 Aug 2013 15:34:20 +0000 (10:34 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 15 Aug 2013 15:34:20 +0000 (10:34 -0500)
New oauth tools!  Heck yeah!

1  2 
mediagoblin/db/models.py
setup.py

index 7448f5ce166c5e7b21b2141c79a98392e50b233e,74dea44e600d85d9a817cd0d7e9a67761a521c80..f0cbce2a6ace41dc3a84f75457dbc76c1d3ea942
@@@ -580,26 -646,11 +646,26 @@@ with_polymorphic
      [ProcessingNotification, CommentNotification])
  
  MODELS = [
-     User, MediaEntry, Tag, MediaTag, MediaComment, Collection, CollectionItem,
-     MediaFile, FileKeynames, MediaAttachmentFile, ProcessingMetaData,
-     Notification, CommentNotification, ProcessingNotification,
-     CommentSubscription]
+     User, Client, RequestToken, AccessToken, NonceTimestamp, MediaEntry, Tag, 
+     MediaTag, MediaComment, Collection, CollectionItem, MediaFile, FileKeynames, 
+     MediaAttachmentFile, ProcessingMetaData, Notification, CommentNotification,
+     ProcessingNotification, CommentSubscription]
  
 +"""
 + Foundations are the default rows that are created immediately after the tables 
 + are initialized. Each entry to  this dictionary should be in the format of:
 +                 ModelConstructorObject:List of Dictionaries
 + (Each Dictionary represents a row on the Table to be created, containing each
 +  of the columns' names as a key string, and each of the columns' values as a
 +  value)
 +
 + ex. [NOTE THIS IS NOT BASED OFF OF OUR USER TABLE]
 +    user_foundations = [{'name':u'Joanna', 'age':24},
 +                        {'name':u'Andrea', 'age':41}]
 +
 +    FOUNDATIONS = {User:user_foundations}
 +"""
 +FOUNDATIONS = {}
  
  ######################################################
  # Special, migrations-tracking table
diff --cc setup.py
Simple merge