import changeset into sql models
authorChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 20 Jan 2012 03:30:47 +0000 (21:30 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 29 Jan 2012 22:33:46 +0000 (16:33 -0600)
mediagoblin/db/sql/models.py

index ed733aff7f39c333db8866d3f260926bef600e60..41b8b4907beee19aefdd836321bfba691f1e9a89 100644 (file)
@@ -29,6 +29,13 @@ from mediagoblin.db.sql.extratypes import PathTupleWithSlashes
 from mediagoblin.db.sql.base import Base, DictReadAttrProxy
 from mediagoblin.db.mixin import UserMixin, MediaEntryMixin
 
+# It's actually kind of annoying how sqlalchemy-migrate does this, if
+# I understand it right, but whatever.  Anyway, don't remove this :P
+# 
+# We could do migration calls more manually instead of relying on
+# this import-based meddling...
+from migrate import changeset
+
 
 class SimpleFieldAlias(object):
     """An alias for any field"""