summaryrefslogtreecommitdiff
path: root/tests/migrations/test_operations.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #25044 -- Fixed migrations for renaming ManyToManyField's through model.Vytis Banaitis2016-05-301-0/+41
* Refs #26521 -- Adjusted CreateModel bases validation to account for mixins.Simon Charette2016-04-281-0/+18
* Refs #26521 -- Added the duplicated value to CreateModel validation messages.Simon Charette2016-04-271-9/+11
* Fixed #26521 -- Validated CreateModel bases, fields and managers for duplicates.James Robert2016-04-271-1/+55
* Fixed #26320 -- Deprecated implicit OneToOnField parent_link.Tim Graham2016-04-221-0/+1
* Fixed E128 flake8 warnings in tests/.Tim Graham2016-04-081-1/+2
* Added missing primary keys to some OperationTestsMarkus Holtermann2016-04-031-2/+9
* Refs #26022 -- Replaced six.assertRaisesRegex with assertRaisesMessage as app...Hasan2016-01-291-9/+4
* Fixed #24109 -- Allowed RunSQL and RunPython operations to be elided.Simon Charette2016-01-231-0/+8
* Fixed #14286 -- Added models.BigAutoField.Alexander Sosnovskiy2015-12-251-0/+138
* Fixed #25852 -- Made sure AlterModelManager forces a reload of its model state.Simon Charette2015-12-151-0/+5
* Refs #25896 -- Fixed migration test failure on OracleShai Berger2015-12-101-1/+4
* Fixed #25896 -- Fixed state bug in SeparateDatabaseAndState.database_backward...Amos Onn2015-12-091-0/+76
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-121-5/+18
* Used skipUnlessDBFeature where appropriate.Simon Charette2015-08-081-2/+2
* Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey...Flavio Curella2015-07-271-10/+12
* Fixed #24725 -- Allowed renaming of target models in ManyToMany relationsMarkus Holtermann2015-04-301-0/+26
* Fixed #24595 -- Prevented loss of null info in MySQL field alterationClaude Paroz2015-04-171-2/+11
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-6/+6
* Refs #24354 -- Prevented repointing of relations on superclasses when migrati...Matthew Wilkes2015-03-141-0/+35
* Fixed #24362: Made test run each migration operation in its own schema editorShai Berger2015-02-181-6/+9
* Refs #24282 -- Added failing test case for assigning models of wrong type to FKMarkus Holtermann2015-02-161-0/+54
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-5/+5
* Fixed #24135 -- Made RenameModel rename many-to-many tables.Tim Graham2015-01-151-0/+26
* Removed supports_binary_field flag as all backends support themClaude Paroz2015-01-111-2/+0
* Fixed #24110 -- Rewrote migration unapply to preserve intermediate statesMarkus Holtermann2015-01-101-11/+17
* Fixed #22583 -- Allowed RunPython and RunSQL to provide hints to the db router.Loic Bistuer2015-01-101-38/+0
* Fixed #24098 -- Added no-op attributes to RunPython and RunSQLMarkus Holtermann2015-01-091-0/+20
* Fixed #23745 -- Reused states as much as possible in migrationsClaude Paroz2015-01-021-2/+3
* Replaced migration state render() by apps cached propertyClaude Paroz2015-01-021-43/+30
* Fixed #23983 -- Fixed a crash in migrations when adding order_with_respect_to...Andriy Sokolovskiy2014-12-161-0/+9
* Refs #23947 -- Improved migrations tests table cleanup.Diego Guimarães2014-12-151-24/+19
* Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann2014-12-151-1/+104
* Fixed #23909 -- Prevented crash when collecting SQL for RunSQLClaude Paroz2014-12-011-0/+6
* Corrected a docstring in tests/migrations/test_operations.py.wrwrwr2014-12-011-1/+1
* Replaced router.routers usage with override_settings(DATABASE_ROUTERS); refs ...wrwrwr2014-12-011-11/+3
* Fixed #23880 -- Added missing index_together handling for SQLiteMarkus Holtermann2014-12-011-4/+2
* Fixed #23894 -- Made deconstruct methods favor kwargs over argsMarkus Holtermann2014-11-281-4/+98
* Fixed duplicate index error on Oracle; refs #23859.Markus Holtermann2014-11-201-1/+7
* Fixed #22248 -- Made RenameModel reversibleStratos Moros2014-11-191-2/+1
* Fixed #23859 -- Fixed a migration crash when a field is renamed that is part ...Markus Holtermann2014-11-171-2/+6
* Removed references to the deprecated assertRaisesRegexp method.Simon Charette2014-11-161-2/+3
* Added missing available app in migrations test caseClaude Paroz2014-10-231-0/+1
* Fixed #23630 -- Made AlterModelTable rename auto-created M2M tables.Tim Graham2014-10-231-1/+36
* Avoided requiring sqlparse for a test.Collin Anderson2014-10-091-3/+2
* Skip another test if sqlparse is not availableCollin Anderson2014-10-091-0/+1
* Fixed #23426 -- Allowed parameters in migrations.RunSQLMarkus Holtermann2014-10-021-0/+81
* Fixed #23426 -- Don't require double percent sign in RunSQL without parametersMarkus Holtermann2014-09-241-3/+15
* Fixed #23503 -- Fixed renaming of model with self-referential m2m field.Sergey Fedoseev2014-09-231-0/+16
* Fixed #22918 -- Fixed SeparateDatabaseAndState crashDave Hall2014-09-021-0/+33