diff options
-rw-r--r-- | mediagoblin/db/migrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/migrations.py b/mediagoblin/db/migrations.py index 886632de..1ef5f9cb 100644 --- a/mediagoblin/db/migrations.py +++ b/mediagoblin/db/migrations.py @@ -1220,7 +1220,7 @@ def datetime_to_utc(db): # Convert Notification notification_table = inspect_table(metadata, "core__notifications") for notification in db.execute(notification_table.select()): - db.execute(notifiction_table.update().values( + db.execute(notification_table.update().values( created=dt_to_utc(notification.created) ).where(notification_table.c.id==notification.id)) |