From: Christopher Allan Webber Date: Thu, 22 Aug 2013 21:04:19 +0000 (-0500) Subject: Not sure why there wasn't a .commit() at the end of add_new_notification_tables() X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=e8eec575f3a1d893036ce9b3356d2f56fd15016d;p=mediagoblin.git Not sure why there wasn't a .commit() at the end of add_new_notification_tables() ... but it seems like there should be and it wouldn't hurt. This commit sponsored by Julio Claudio Matus Ramirez. Thank you! --- diff --git a/mediagoblin/db/migrations.py b/mediagoblin/db/migrations.py index d542d7b9..62fb7e8d 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -365,6 +365,8 @@ def add_new_notification_tables(db): CommentNotification_v0.__table__.create(db.bind) ProcessingNotification_v0.__table__.create(db.bind) + db.commit() + @RegisterMigration(13, MIGRATIONS) def pw_hash_nullable(db):