From: cfdv Date: Tue, 21 Jun 2011 03:47:43 +0000 (-0500) Subject: assigns migration steps to User database objects X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=0472653ee4763e2f045632d49a9eed729a491f97;p=mediagoblin.git assigns migration steps to User database objects adds the migration_handler to the User db class, connecting the migration steps in ../db/migrations.py to the migration code in gmg_commands --- diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index b3de7793..600b79ff 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -58,6 +58,8 @@ class User(Document): 'status': u'needs_email_verification', 'verification_key': lambda: unicode(uuid.uuid4()), 'is_admin': False} + + migration_handler = migrations.UserMigration def check_login(self, password): """