From 0968c1b182bb51a2eff1a98151c3b2f2125d94ee Mon Sep 17 00:00:00 2001 From: Stefan Stammberger Date: Tue, 9 Nov 2021 19:15:43 +0100 Subject: [PATCH] feat: print a message when all migrations are done --- lnbits/commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lnbits/commands.py b/lnbits/commands.py index 0a48e05f..95950760 100644 --- a/lnbits/commands.py +++ b/lnbits/commands.py @@ -109,3 +109,5 @@ async def migrate_databases(): async with ext_db.connect() as ext_conn: await run_migration(ext_conn, ext_migrations) + + print(" ✔️ All migrations done.")