feat: print a message when all migrations are done

This commit is contained in:
Stefan Stammberger 2021-11-09 19:15:43 +01:00
parent 8ea2d20389
commit 0968c1b182
No known key found for this signature in database
GPG key ID: 645FA807E935D9D5

View file

@ -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.")