aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/gmg_commands/mongosql.py
Commit message (Collapse)AuthorAgeFilesLines
* RIP out mongoSebastian Spaeth2012-12-251-28/+0
| | | | | | | | | Since sqlalchemy is providing our database abstraction and we have moved away from Mongo as the underlying database, it is now time to simplify things and rip out mongo. This provides the bulk of the changes, and can stand on its own. There are some followup tasks that can be done, such as removing now unneeded abstraction layers, e.g. db.sql.fake.py
* mongo->sql conversion script now runs mongo migrations first, just in caseChristopher Allan Webber2012-03-171-0/+4
|
* Mongosql imports made celery get set up before we wanted it via ./bin/gmg ↵Christopher Allan Webber2012-03-171-2/+1
| | | | | | commands Just moved the import into the actual function. That resolved the issue!
* Create "gmg convert_mongo_to_sql" commandElrond2012-02-231-0/+25
Finally, to make testing of sql a bit easier, create a bin/gmg command to do the conversion from mongo to sql. It's currently named "convert_mongo_to_sql". The most important option is the gmg -cf option to give a configfile with the appropiate sql_engine definition.