mirror of
https://github.com/optim-enterprises-bv/Mailu.git
synced 2025-10-30 17:47:55 +00:00
Merge branch 'master' into fix-doc-commands-1
This commit is contained in:
@@ -13,6 +13,7 @@ v1.6.1 - unreleased
|
|||||||
- Bug: Fix creating new fetched accounts
|
- Bug: Fix creating new fetched accounts
|
||||||
- Bug: Fix poor performance if ANTIVIRUS is configured to none.
|
- Bug: Fix poor performance if ANTIVIRUS is configured to none.
|
||||||
- Bug: Rename cli commands and their options (replace "\_" with "-") ([#877](https://github.com/Mailu/Mailu/issues/877))
|
- Bug: Rename cli commands and their options (replace "\_" with "-") ([#877](https://github.com/Mailu/Mailu/issues/877))
|
||||||
|
- Bug: Fix typo in migration script ([#905](https://github.com/Mailu/Mailu/issues/905))
|
||||||
|
|
||||||
v1.6.0 - 2019-01-18
|
v1.6.0 - 2019-01-18
|
||||||
-------------------
|
-------------------
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ def upgrade():
|
|||||||
# lower relays
|
# lower relays
|
||||||
for relay in connection.execute(relay_table.select()):
|
for relay in connection.execute(relay_table.select()):
|
||||||
connection.execute(relay_table.update().where(
|
connection.execute(relay_table.update().where(
|
||||||
relay_tbale.c.name == relay.name
|
relay_table.c.name == relay.name
|
||||||
).values(
|
).values(
|
||||||
name=relay.name.lower()
|
name=relay.name.lower()
|
||||||
))
|
))
|
||||||
|
|||||||
Reference in New Issue
Block a user