diff options
author | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2012-11-30 10:03:53 +0100 |
---|---|---|
committer | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2012-12-25 20:12:16 +0100 |
commit | 953698842532526afdeadaf6697b35ade84d379c (patch) | |
tree | 05ef8e6c4b2c8ddefed68378e97d33edf37d5dc0 /mediagoblin/gmg_commands/dbupdate.py | |
parent | 6eddc3b75e7cdf1e4d4015aeeccff6e250b10558 (diff) | |
download | mediagoblin-953698842532526afdeadaf6697b35ade84d379c.tar.lz mediagoblin-953698842532526afdeadaf6697b35ade84d379c.tar.xz mediagoblin-953698842532526afdeadaf6697b35ade84d379c.zip |
Move db.sql.migrations to db.migrations
Diffstat (limited to 'mediagoblin/gmg_commands/dbupdate.py')
-rw-r--r-- | mediagoblin/gmg_commands/dbupdate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/gmg_commands/dbupdate.py b/mediagoblin/gmg_commands/dbupdate.py index 203179fd..2c34bb51 100644 --- a/mediagoblin/gmg_commands/dbupdate.py +++ b/mediagoblin/gmg_commands/dbupdate.py @@ -53,7 +53,7 @@ def gather_database_data(media_types, plugins): # Add main first from mediagoblin.db.sql.models import MODELS as MAIN_MODELS - from mediagoblin.db.sql.migrations import MIGRATIONS as MAIN_MIGRATIONS + from mediagoblin.db.migrations import MIGRATIONS as MAIN_MIGRATIONS managed_dbdata.append( DatabaseData( |