diff options
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r-- | mediagoblin/db/models.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 41c36764..9d57753b 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -1466,13 +1466,13 @@ with_polymorphic( [ProcessingNotification, CommentNotification]) MODELS = [ - User, MediaEntry, Tag, MediaTag, MediaComment, Collection, CollectionItem, - MediaFile, FileKeynames, MediaAttachmentFile, ProcessingMetaData, - Notification, CommentNotification, ProcessingNotification, Client, - CommentSubscription, ReportBase, CommentReport, MediaReport, UserBan, - Privilege, PrivilegeUserAssociation, - RequestToken, AccessToken, NonceTimestamp, - Activity, Generator, Location, GenericModelReference] + LocalUser, RemoteUser, User, MediaEntry, Tag, MediaTag, MediaComment, + Collection, CollectionItem, MediaFile, FileKeynames, MediaAttachmentFile, + ProcessingMetaData, Notification, CommentNotification, + ProcessingNotification, Client, CommentSubscription, ReportBase, + CommentReport, MediaReport, UserBan, Privilege, PrivilegeUserAssociation, + RequestToken, AccessToken, NonceTimestamp, Activity, Generator, Location, + GenericModelReference] """ Foundations are the default rows that are created immediately after the tables |