diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-01-07 14:36:26 -0800 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-01-11 07:14:33 -0800 |
commit | f485d55f819883aa77114c20961b59f0d5f3ad59 (patch) | |
tree | 0a246c0e213cd5e69da52ef615a941b0ae0c3bb5 | |
parent | a6835f422f2b5af8df96cd958ffe2553ec9db15c (diff) | |
download | mediagoblin-f485d55f819883aa77114c20961b59f0d5f3ad59.tar.lz mediagoblin-f485d55f819883aa77114c20961b59f0d5f3ad59.tar.xz mediagoblin-f485d55f819883aa77114c20961b59f0d5f3ad59.zip |
Add a TODO to rename run_all_migrations to run_legacy_migrations
-rw-r--r-- | mediagoblin/gmg_commands/dbupdate.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |