Raffaele Salmaso
|
abd640fbdf
|
Fixed #23341 -- Added migration name to nonexistent migration error in makemigrations.
|
2014-08-23 19:18:03 -04:00 |
Raffaele Salmaso
|
be4baaefe2
|
Fixed #23352 -- Added tests for MigrationGraph.{forwards,backwards}_plan
|
2014-08-23 21:35:13 +00:00 |
Markus Holtermann
|
144cff3f51
|
Fixed #23322 -- Use resolved swappable model for dependency resolution during makemigrations
|
2014-08-20 16:04:21 -04:00 |
Tim Graham
|
d1299fce0e
|
Fixed migrations tests added in refs #23315.
|
2014-08-20 14:00:59 -04:00 |
Andrew Godwin
|
9247da1032
|
Fixed #23315: Operational dependency fail with mixed create/add
|
2014-08-19 19:51:12 -07:00 |
Lee Sanghyuck
|
11d9cbe2f4
|
Fixed #23316 -- Added datetime.time serialization in migrations.
|
2014-08-19 13:31:46 -04:00 |
Baptiste Mispelon
|
54164b814c
|
Fixed broken tests on Oracle after 5853c87a45 .
Oracle doesn't have a `BEGIN` statement so the test would
fail.
Refs #23303
|
2014-08-19 17:58:30 +02:00 |
Baptiste Mispelon
|
5853c87a45
|
Fixed #23303 -- Added BEGIN and COMMIT statements to the output of sqlmigrate.
|
2014-08-18 18:55:12 +02:00 |
Tim Graham
|
0ad4672c0f
|
Fixed typo in tests/migrations/test_operations.py
|
2014-08-15 11:01:49 -04:00 |
Andrew Godwin
|
8f9862cd4d
|
Fixed #23275: Unmanaged models kept by autodetector, ignored by ops
|
2014-08-12 12:49:20 -07:00 |
Andrew Godwin
|
dfe86449c9
|
Fixed #23244: Error altering FK to non-FK in migrations
|
2014-08-07 11:52:31 +10:00 |
Andrew Godwin
|
c06e124b5e
|
Fixed #23091: CreateModel and AddField were clashing with deferred SQL
|
2014-08-04 11:59:29 +10:00 |
Simon Charette
|
1b00738f73
|
Fixed a MySQL test failure introduced by cbb29af1aa .
Seems like unlike other backends MySQL get_constraints fails when dealing
with a non-existing table. refs #23160.
|
2014-08-03 16:32:36 -04:00 |
Simon Charette
|
cbb29af1aa
|
Fixed #23160 -- Correctly rename models with self referential fields.
Thanks to whitews AT gmail for the report.
|
2014-08-03 15:27:01 -04:00 |
Andrew Godwin
|
a338e07735
|
Fixed #23101: Prefer doing deletes before creates in autodetector.
Makes declined or missed renames still work (but drop data).
|
2014-07-29 09:38:51 -07:00 |
Andrew Godwin
|
d6e73a876d
|
Fixed #23121: AlterModelOptions operation not changing state right
|
2014-07-28 10:47:28 -07:00 |
Andrew Godwin
|
cb60d22bd9
|
Fixed #23100: Individual FK creation missing dependencies
|
2014-07-28 10:32:43 -07:00 |
Andrew Godwin
|
805774df1f
|
Fixed #22944: Bad dependency on FK alteration in autodetector
|
2014-07-26 09:22:19 -07:00 |
Andrew Godwin
|
a64bc3df77
|
Fixed #23093: soft application detection for swapped models
|
2014-07-25 09:35:38 -07:00 |
Andrew Godwin
|
ed4812692e
|
Merge pull request #2938 from dekkers/ticket_23071
Fixed #23071 -- Use last migration's name in dependency to other app
|
2014-07-25 08:53:57 -07:00 |
Tim Graham
|
64e75c47ef
|
Fixed #23014 -- Infinite migration regression with unique/index_together.
|
2014-07-24 14:27:10 -04:00 |
Tim Graham
|
66211b4b75
|
Silenced a Python 2 ImportWarning in a migrations test.
|
2014-07-24 09:24:52 -04:00 |
Jeroen Dekkers
|
3582698c13
|
Fixed #23071 -- Use last migration's name in dependency to other app
Changed the autodetector to lookup the name of the other app's last
migration in the graph and use that as dependency instead of using
__latest__.
|
2014-07-22 01:03:02 +02:00 |
Andrew Godwin
|
e24e9e0438
|
Fixed #23014: Renaming not atomic with unique together
|
2014-07-21 11:36:34 +01:00 |
Andrew Godwin
|
dcb4ed5170
|
Fixed #22975: Don't call rename SQL if not needed
|
2014-07-21 10:14:00 +01:00 |
Andrew Godwin
|
145d231782
|
Fixed #23041: Bad base dependencies for proxy models
|
2014-07-16 09:59:08 -07:00 |
Tim Graham
|
0154965392
|
Fixed #23013 -- Fixed removing unique_together/index_together constraints in migrations.
Thanks melinath for the report.
|
2014-07-15 15:20:59 -04:00 |
Tim Graham
|
9a2ab62977
|
Fixed #23008 -- Fixed typo causing bad migration dependencies.
Thanks semenov for the report and Florian for investigation.
|
2014-07-15 08:48:29 -04:00 |
Huu Nguyen
|
f7a78f9bba
|
Fixed #22791 -- Invoke interactive questioner only for conflicts in specified apps.
Thanks bendavis78 for the report and Tim Graham for the review.
|
2014-07-14 11:00:49 -04:00 |
Andrew Godwin
|
9e5a37c82d
|
Fix comment
|
2014-07-10 10:00:31 -07:00 |
Andrew Godwin
|
008bff92b7
|
Fixed #22970: Incorrect dependencies for existing migrated apps
|
2014-07-09 23:53:43 -07:00 |
Loic Bistuer
|
2572c07cc6
|
Fixed #22906 -- Added a more helpful repr to migrations' ModelState.
Thanks Collin Anderson for the report and original patch.
|
2014-07-06 14:56:18 +07:00 |
Andrew Godwin
|
f751109cb2
|
Merge pull request #2881 from charettes/ticket-22943-compiled-regex-deconstruction
Fixed #22943 -- Correctly serialize compiled regexes.
|
2014-07-05 16:37:10 -07:00 |
Andrew Godwin
|
80a12f21e3
|
Fixed #22960: Bad handling of relations as PKs in autodetector
|
2014-07-05 16:33:03 -07:00 |
Simon Charette
|
35c2c37041
|
Fixed #22943 -- Correctly serialize compiled regexes.
Thanks to antialiasis at gmail dot com for the patch.
|
2014-07-04 13:34:20 -04:00 |
Colin Wood
|
27ee608b55
|
Fixed #22940 -- Added missing string iterpolation parameters in migrations.writer error.
Forwardport of f5740af868 from stable/1.7.x
|
2014-07-02 12:45:02 -04:00 |
Tim Graham
|
70576740b0
|
Fixed #22917 -- Fixed typo in AlterIndexTogether.describe().
|
2014-06-27 10:34:48 -04:00 |
Tim Graham
|
e0cd07ec2f
|
Fixed #22903 -- Fixed migration generation if index_together or unique_together is removed from a model.
|
2014-06-25 10:02:12 -04:00 |
Andrew Godwin
|
fe262c0b84
|
Fixed #22708: Typo in autodetector base dependency gen
|
2014-06-23 20:48:33 -07:00 |
Tim Graham
|
908160f692
|
Fixed test failures introduced by refs #22881.
|
2014-06-23 09:59:36 -04:00 |
Chris Beaven
|
21c496ea52
|
Fixed #22881 -- Better soft_applied migration detection
|
2014-06-23 13:36:22 +12:00 |
Andrew Godwin
|
b30d32ff24
|
Fixed #22875: Optimizer did not take through= into account.
|
2014-06-22 11:23:45 -07:00 |
Tim Graham
|
9a46836a0c
|
Moved a line outside of try/except to prevent an error in finally.
Thanks Ian Foote.
|
2014-06-20 09:13:34 -04:00 |
Huu Nguyen
|
fbb684d95e
|
Fixed #22862 -- Added --noinput option to makemigrations.
Thanks artortenburger for the report.
|
2014-06-20 08:55:02 -04:00 |
Alex Gaynor
|
d015c9d11c
|
Fixed several flake8 errors
|
2014-06-18 07:47:13 -07:00 |
Andrew Godwin
|
2cee1d4642
|
Fixed #22861: Internal migrations done first so __first__ works
Thanks to Chris Beaven.
|
2014-06-17 23:28:35 -07:00 |
Andrew Godwin
|
09b63a7cce
|
Fix __latest__ to actually resolve to the latest migration
|
2014-06-17 22:12:31 -07:00 |
Andrew Godwin
|
405b9dcd8b
|
Fix broken test
|
2014-06-17 21:32:23 -07:00 |
Andrew Godwin
|
8d2ac948a9
|
Fixed #22853: Swapped models are now ignored for migration operations.
|
2014-06-17 17:45:38 -07:00 |
Andrew Godwin
|
77ff4a9360
|
Fix previous commit on python 2
|
2014-06-17 09:56:22 -07:00 |