Add a TODO to rename run_all_migrations to run_legacy_migrations
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 7 Jan 2016 22:36:26 +0000 (14:36 -0800)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 11 Jan 2016 15:14:33 +0000 (07:14 -0800)
mediagoblin/gmg_commands/dbupdate.py

index da07c0a87e63619ccaa0cc340cc887fbad10e74b..6227ad0e737dcd6667698eb95c5655402b848e2a 100644 (file)
@@ -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