aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r--mediagoblin/db/models.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py
index 23527e84..0dcb6ce8 100644
--- a/mediagoblin/db/models.py
+++ b/mediagoblin/db/models.py
@@ -171,8 +171,6 @@ class MediaEntry(Document):
- attachment_files: A list of "attachment" files, ones that aren't
critical to this piece of media but may be usefully relevant to people
viewing the work. (currently unused.)
-
- - thumbnail_file: Deprecated... we should remove this ;)
"""
__collection__ = 'media_entries'
@@ -199,10 +197,7 @@ class MediaEntry(Document):
# The following should be lists of lists, in appropriate file
# record form
- 'attachment_files': list,
-
- # This one should just be a single file record
- 'thumbnail_file': [unicode]}
+ 'attachment_files': list}
required_fields = [
'uploader', 'created', 'media_type', 'slug']