From: Christopher Allan Webber Date: Thu, 7 Jan 2016 22:36:26 +0000 (-0800) Subject: Add a TODO to rename run_all_migrations to run_legacy_migrations X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f485d55f819883aa77114c20961b59f0d5f3ad59;p=mediagoblin.git Add a TODO to rename run_all_migrations to run_legacy_migrations --- diff --git a/mediagoblin/gmg_commands/dbupdate.py b/mediagoblin/gmg_commands/dbupdate.py index da07c0a8..6227ad0e 100644 --- a/mediagoblin/gmg_commands/dbupdate.py +++ b/mediagoblin/gmg_commands/dbupdate.py @@ -126,6 +126,7 @@ def run_dbupdate(app_config, global_config): # Set up the database db = setup_connection_and_db_from_config(app_config, migrations=True) # Run the migrations + # TODO: rename to run_legacy_migrations run_all_migrations(db, app_config, global_config) # TODO: Make this happen regardless of python 2 or 3 once ensured