From e8eec575f3a1d893036ce9b3356d2f56fd15016d Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 22 Aug 2013 16:04:19 -0500 Subject: [PATCH] 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! --- mediagoblin/db/migrations.py | 2 ++ 1 file changed, 2 insertions(+) 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): -- 2.25.1