diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-22 16:04:19 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-22 16:04:19 -0500 |
commit | e8eec575f3a1d893036ce9b3356d2f56fd15016d (patch) | |
tree | c660b7a93b465d2385b82056fb50c1e019bf1c3b | |
parent | 2c79dbc5ffb249cfaf5ae11fc8565bc7f4256e09 (diff) | |
download | mediagoblin-e8eec575f3a1d893036ce9b3356d2f56fd15016d.tar.lz mediagoblin-e8eec575f3a1d893036ce9b3356d2f56fd15016d.tar.xz mediagoblin-e8eec575f3a1d893036ce9b3356d2f56fd15016d.zip |
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!
-rw-r--r-- | mediagoblin/db/migrations.py | 2 |
1 files changed, 2 insertions, 0 deletions
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): |