diff --git a/db_creation/update_db.py b/db_creation/update_db.py index 47dcc7d..782bafe 100644 --- a/db_creation/update_db.py +++ b/db_creation/update_db.py @@ -32,3 +32,6 @@ if current_version not in updaters.keys(): with mysql.connect(host='localhost', user=DB_USERNAME, password=DB_PASSWORD) as connection: while current_version != target_version: current_version = updaters[current_version](connection) + print(f'Updated DB to version {current_version}') + +print(f'DB is now at target version!')