Missing multi=True closing this migration, oops :)

This commit is contained in:
Christopher Allan Webber 2011-08-12 13:14:35 -05:00
parent ba4858c5b4
commit fabdccd011

View File

@ -62,6 +62,7 @@ def mediaentry_remove_thumbnail_file(database):
database['media_entries'].update(
{'thumbnail_file': {'$exists': True}},
{'$unset': {'thumbnail_file': 1}},
multi=True)
@RegisterMigration(4)