summaryrefslogtreecommitdiff
path: root/django/db/migrations
AgeCommit message (Expand)Author
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-30Auto-apply initial migrations if their tables exist already.Andrew Godwin
2013-10-29Use `callable` instead of `six.callable`.Baptiste Mispelon
2013-10-23Fix migration planner to fully understand squashed migrations. And test.Andrew Godwin
2013-10-23Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol
2013-10-21Fixed #21275 -- Fixed a serializer error when generating migrations for contr...Loic Bistuer
2013-10-19Added support for serializing class methods. - Refs #21290.Loic Bistuer
2013-10-19Fixed #21283 -- Added support for migrations if models is a package.Loic Bistuer
2013-10-16First pass on squashmigrations command; files are right, execution not.Andrew Godwin
2013-10-16Improve migration optimizer to be able to optimize through other opsAndrew Godwin
2013-10-15Handle Apps with South migrations as unmigrated apps.Florian Apolloner
2013-10-10Fixed "redefinition of unused 'foo' from line X" pyflakes warnings.Tim Graham
2013-10-07Fixed #21236 -- Allowed migrations to work with unique_together tuples.Javed Khan
2013-10-02Initial version of MigrationOptimizer and testsAndrew Godwin
2013-09-25Add reverse_code optional argument to RunPythonAndrew Godwin
2013-09-25Allow callables as the argument to RunPythonAndrew Godwin
2013-09-25Make sqlmigrate ignore the RunPython operationAndrew Godwin
2013-09-25Add RunPython migration operation and testsAndrew Godwin
2013-09-25Add equality support for Project/ModelStateAndrew Godwin
2013-09-17Fixed #21114 -- Migrations must not have a dependency to themselves.Markus Holtermann
2013-09-14REmoved some unused importsAlex Gaynor
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-10Made MigrationWriter look for a "deconstruct" attribute on functions.Loic Bistuer
2013-09-07RunSQL migration operation and alpha SeparateDatabaseAndState op'n.Andrew Godwin
2013-09-06Fixed #21037 -- Made MigrationWriter raise a ValueError when serializing lamb...Loic Bistuer
2013-09-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin
2013-09-06Migration autodetector now corerctly deals with proxy modelsAndrew Godwin
2013-09-06Project/ModelState now correctly serialize multi-model inheritanceAndrew Godwin
2013-09-06Add --list option to migrate commandAndrew Godwin
2013-09-06Make db.migrations ignore South-style migrations.Andrew Godwin
2013-09-06Fixed #21015 -- Fixed MigrationLoader when importlib.import_module returns a ...Loic Bistuer
2013-09-06Fixed #21014 -- Fixed gobbled ImportError in MigrationLoader.Loic Bistuer
2013-09-04Fixed #21010 -- Changed ModelState to only copy _meta.local_fields.Loic Bistuer
2013-08-31Fixed #21008 -- Made MigrationWriter handle Promise objects.Loic Bistuer
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-21Change autodetector changes API to be just one methodAndrew Godwin
2013-08-11Fix weird planning issues when already fully migrated.Andrew Godwin
2013-08-11Stop being overcautious about Field.relAndrew Godwin
2013-08-10Docs tweaks (thanks timgraham)Andrew Godwin
2013-08-09Add [y/n] to autodetector questions and allow for default valueAndrew Godwin
2013-08-09utils.importlib is deprecatedAndrew Godwin
2013-07-30Implement allow_migrate for migration operationsAndrew Godwin
2013-07-26Fix Python 3 supportAndrew Godwin
2013-07-26Add --fake option to migrateAndrew Godwin
2013-07-26Fix timezone warnings if USE_TZ=TrueAndrew Godwin
2013-07-25Add test for creating M2MsAndrew Godwin
2013-07-22Make migrate command recognise prefixes and 'zero'.Andrew Godwin
2013-07-02Add AlterIndexTogether operationAndrew Godwin
2013-07-02Autodetection of unique_together changesAndrew Godwin
2013-07-02Add unique_together altering operationAndrew Godwin