summaryrefslogtreecommitdiff
path: root/django/db/migrations
AgeCommit message (Expand)Author
2015-01-07Refs #22608 -- Optimized migration optimizer and migrate by caching calls to ...Ulrich Petri
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2015-01-02Fixed #23745 -- Reused states as much as possible in migrationsClaude Paroz
2015-01-02Passed around the state between migrationsClaude Paroz
2015-01-02Added ignore_swappable to StateAppsMarkus Holtermann
2015-01-02Replaced migration state render() by apps cached propertyClaude Paroz
2014-12-31Renamed variables to avoid name collision with import of django.db.models.Russell Keith-Magee
2014-12-29Fixed #23938 -- Added migration support for m2m to concrete fields and vice v...Markus Holtermann
2014-12-25Fixed #23866 -- Harmonized refs to Django documentation from codeClaude Paroz
2014-12-23Fixed #24037 -- Prevented data loss possibility when changing Meta.managed.Tim Graham
2014-12-22Fixed #23998 -- Added datetime.time support to migrations questioner.Oscar Ramirez
2014-12-21Fixed #24017 -- Added python_2_unicode_compatible in db/migrationsJosh Schneier
2014-12-16Fixed #23983 -- Fixed a crash in migrations when adding order_with_respect_to...Andriy Sokolovskiy
2014-12-15Fixed #23405 -- Fixed makemigrations prompt when adding Text/CharField.Andriy Sokolovskiy
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
2014-12-11Fixed #23956 -- Fixed migration creation for multiple table inheritanceMarkus Holtermann
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-12-03Fixed #23950 -- Prevented calling deconstruct on classes in MigrationWriter.Gavin Wahl
2014-11-28Fixed #23894 -- Made deconstruct methods favor kwargs over argsMarkus Holtermann
2014-11-25Fixed bug in circular dependency algo for migration dependencies.Luke Plant
2014-11-22Revert "Fixed #23892 -- Made deconstructible classes forwards compatible"Carl Meyer
2014-11-22Fixed #23892 -- Made deconstructible classes forwards compatibleCarl Meyer
2014-11-21Fixed #23794 -- Fixed migrations crash when removing a field that's part of i...Andrzej Pragacz
2014-11-20Fixed #23844 -- Used topological sort for migration operation dependency reso...Patryk Zawadzki
2014-11-19Fixed #23410 -- Avoided unnecessary rollbacks in related apps when migrating ...Carl Meyer
2014-11-19Fixed #22248 -- Made RenameModel reversibleStratos Moros
2014-11-17Fixed #23859 -- Fixed a migration crash when a field is renamed that is part ...Markus Holtermann
2014-11-17Avoided unneeded calls to state.render() in migrations.twidi
2014-11-17Reordered condition to avoid calling allow_migrate() if unneeded.twidi
2014-11-15Merge pull request #3536 from Zweedeend/ticket_23837Carl Meyer
2014-11-15Fixed #23835: Changed circular dependency in DFS to be less infiniteAndrew Godwin
2014-11-15Fixes #23837: Replace list.pop(0) by deque.popleft() in dfs function in migra...Niels Kouwenhoven
2014-11-15Revert "Use topological sort for migration operation dependency resolution"Tim Graham
2014-11-15Use topological sort for migration operation dependency resolutionKlaas van Schelven
2014-11-06Fixed #23770 -- Changed serialization strategy for floats with respect to NaN...Markus Holtermann
2014-10-30Fixed #23733 -- Fixed squashing migrations that depend on multiple apps.twidi
2014-10-30Fixed #23556 -- Raised a more meaningful error message when migrations refer ...Markus Holtermann
2014-10-29Fixed #23614 -- Changed the way the migration autodetector orders unique/inde...Markus Holtermann
2014-10-29Limited lines to 119 characters in django/{contrib,db}.Berker Peksag
2014-10-24Fixed #23618 -- Allowed apps with no models to still have migrationsClaude Paroz
2014-10-23Fixed #23630 -- Made AlterModelTable rename auto-created M2M tables.Tim Graham
2014-10-20Fixed #23629 -- Allowed autodetector to detect changes in Meta.db_table.Tianyi Wang
2014-10-09Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL column in...Markus Holtermann
2014-10-02Fixed #23426 -- Allowed parameters in migrations.RunSQLMarkus Holtermann
2014-09-29Fixed #23365 -- Added support for timezone-aware datetimes to migrations.Rudy Mutter
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-09-27Fixed #23560 -- Fixed MigrationWrite to handle builtin types without imports.Loic Bistuer
2014-09-25Fixed #23415 -- Added fields for unmanaged and proxy model migrations.Markus Holtermann
2014-09-24Revert "Fixed #23474 -- Prevented migrating backwards from unapplying the wro...Tim Graham
2014-09-24Fixed #23426 -- Don't require double percent sign in RunSQL without parametersMarkus Holtermann