1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-02-15 13:33:21 +02:00

Fix typo in migration file

Fixes #905
This commit is contained in:
Tim Möhlmann 2019-02-12 18:17:38 +02:00 committed by GitHub
parent d3a5c70589
commit 111dae351a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,7 +106,7 @@ def upgrade():
# lower relays
for relay in connection.execute(relay_table.select()):
connection.execute(relay_table.update().where(
relay_tbale.c.name == relay.name
relay_table.c.name == relay.name
).values(
name=relay.name.lower()
))