aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db/sql/migration_tools.py
Commit message (Collapse)AuthorAgeFilesLines
* Move db.sql.migration_tools to db.migration_tools.Elrond2013-01-081-270/+0
| | | | Follow the new trend.
* Add inspect_table.Elrond2013-01-081-0/+7
| | | | | | In our current scheme of migrations, we reflect the current sql schema into an SQLAlchemy schema. So let's have a tool function for this.
* Move all the migration tools into new migration_tools.pyElrond2013-01-081-0/+263
Factor all the migration related stuff out into a new .db.sql.migration_tools. First we don't have to load this module for our normal server. Second it makes all the import dependencies a little more cleaner.