summaryrefslogtreecommitdiff
path: root/django/db/migrations/operations
AgeCommit message (Expand)Author
2014-07-28Fixed #23121: AlterModelOptions operation not changing state rightAndrew Godwin
2014-07-21Fixed #23014: Renaming not atomic with unique togetherAndrew Godwin
2014-07-15Fixed #23013 -- Fixed removing unique_together/index_together constraints in ...Tim Graham
2014-06-27Fixed #22917 -- Fixed typo in AlterIndexTogether.describe().Tim Graham
2014-06-25Fixed #22903 -- Fixed migration generation if index_together or unique_togeth...Tim Graham
2014-06-17Fixed #22853: Swapped models are now ignored for migration operations.Andrew Godwin
2014-06-15Fixed #22568: Better proxy model support in migrationsAndrew Godwin
2014-06-15Fixed #22470: Full migration support for order_with_respect_toAndrew Godwin
2014-06-15Persist non-schema-relevant Meta changes in migrationsAndrew Godwin
2014-06-07Fixed #22750, #22248: Model renaming now also alters field FKsAndrew Godwin
2014-06-05Prevent operation pollution by later operations of fieldsAndrew Godwin
2014-05-07Fixed #22496: Data migrations get transactions again!Andrew Godwin
2014-05-06Added a bunch of missing unicode_literalsClaude Paroz
2014-04-26Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
2014-03-19Mark model renaming as irreversible for now (#22248)Andrew Godwin
2014-03-11Fix AlterField migrations that are related to a RenameModel migrationChris Beaven
2014-03-01Fixed #22172 -- Allowed index_together to be a single list (rather than list ...Anubhav Joshi
2014-02-28Fix keyword agument names in RunPython to be positionalAndrew Godwin
2014-02-23Fixed #22095 -- Enabled backward migrations for RunPython operationsAndrew Gorcester
2014-02-12Remove redunant code from RunPython operationAndrew Godwin
2014-02-09Removed unused imports + other flake8 fixes.Tim Graham
2014-02-09Fixed #21892: RunPython no longer accepts stringsAndrew Godwin
2014-01-19Fixed #21783: (again) Found second source of bug, also squashed it.Andrew Godwin
2014-01-20Fixed #21323 -- Improved readability of serialized Operation.Loic Bistuer
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-11Fix altering of SERIAL columns and InnoDB being picky about FK changesAndrew Godwin
2013-12-11Change FKs when what they point to changesAndrew Godwin
2013-12-04Don't make a second migration if there was a force-null-default addcol.Andrew Godwin
2013-11-06flake8 fixesAlex Gaynor
2013-11-06Massive migration optimiser improvements + RenameModel opnAndrew Godwin
2013-11-03Fixed all E226 violationsAlex Gaynor
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-29Use `callable` instead of `six.callable`.Baptiste Mispelon
2013-10-16Improve migration optimizer to be able to optimize through other opsAndrew Godwin
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-14REmoved some unused importsAlex Gaynor
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-07RunSQL migration operation and alpha SeparateDatabaseAndState op'n.Andrew Godwin
2013-07-30Implement allow_migrate for migration operationsAndrew Godwin
2013-07-25Add test for creating M2MsAndrew Godwin
2013-07-02Add AlterIndexTogether operationAndrew Godwin
2013-07-02Add unique_together altering operationAndrew Godwin
2013-06-20Add AlterField and RenameField operationsAndrew Godwin
2013-06-20Add operation that renames tablesAndrew Godwin
2013-06-19Autodetect fields, have migrate actually workAndrew Godwin