aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/db/sql/migrations.py
Commit message (Collapse)AuthorAgeFilesLines
* First migration fix: commit after each migration.Elrond2012-06-141-0/+2
| | | | | | | | | | | | sqlite doesn't like complex changes (alter table) to happen inside a transaction that has already done other things. And really, each migration should say "I'm done" and commit its changes. This is not the full story, but it's the core of it. Specifially the migration framework should probably do a rollback "just in case" after each migration.
* FIXED SQL MIGRATION #2Joar Wandborg2012-06-101-1/+1
|
* Added SQL migrations for email notificationsJoar Wandborg2012-06-101-2/+14
|
* added support for original audio download; renameJakob Kramer2012-05-201-1/+19
| | | | Renamed `ogg' to `webm_audio' in core__file_keynames
* Updates so that dbupdate command worksChristopher Allan Webber2012-02-181-1/+1
| | | | | | - Various fixes to dbupdate itself - Switching db/sql/migrations.py to use a dict instead of a list - Registering the function
* Big ol' start of the SQL migrations system.Christopher Allan Webber2012-01-291-0/+17
Things definitely don't work yet, but should be heading in the right direction.