| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-07-13 | [1.9.x] Fixed #26889 -- Fixed missing PostgreSQL index in ↵ | Jon Dufresne | |
| SchemaEditor.add_field(). Backport of 2e4cfcd2b9a0984ad6c4087a5deebbf33413835c from master | |||
| 2016-06-27 | [1.9.x] Refs #26034 -- Corrected a schema test to work with the correct ↵ | Jon Dufresne | |
| field state. Backport of d47f6d75ef67dbd18abf2bb927753f739a9c117d from master | |||
| 2016-05-03 | [1.9.x] Normalized "an SQL" spelling. | Ville Skyttä | |
| Backport of 575a9a791e62de7550761970dc6797271d956c57 from master | |||
| 2016-04-02 | [1.9.x] Refs #26384, #24995 -- Avoided a module-level MySQL query in the ↵ | Michal Petrucha | |
| schema tests. Backport of d81d02d449edd046a94de5f171f4ae87fa331c7d from master | |||
| 2016-03-31 | [1.9.x] Refs #26384, #24995 -- Skipped a schema test on older MySQL versions. | Tim Graham | |
| Backport of f3595b25496691966d4ff858a3b395735ad85a6e from master | |||
| 2016-03-29 | [1.9.x] Fixed #26384 -- Fixed renaming the PK on a model with a ↵ | Alex Hill | |
| self-referential FK on SQLite. Backport of 4b2cf1cd27587a30b3b081091627d7ee13141afe from master | |||
| 2016-01-22 | [1.9.x] Fixed #26116 -- Corrected schema's test_alter_implicit_id_to_explicit. | Tim Graham | |
| AUTOINCREMENT is dropped converting an AutoField to IntegerField which isn't the point of this test. MySQL would warn or error about this. Backport of b49cc8664306f8b44e9e12ebb9e43791d508ec74 from master | |||
| 2016-01-08 | [1.9.x] Fixed #26034 -- Fixed incorrect index handling on PostgreSQL on ↵ | Tim Graham | |
| Char/TextField with unique=True and db_index=True. Thanks Simon Charette for review. Backport of 56aaae58a746eb39d5e92ba60f59f4c750a8e1a8 from master | |||
| 2016-01-08 | [1.9.x] Added a helper function in schema tests. | Tim Graham | |
| Backport of 54d3ba84066301b9cdbbd657620c0f1e5c2422c0 from master | |||
| 2015-12-10 | [1.9.x] Fixed #25412 -- Fixed missing PostgreSQL index on Char/TextField ↵ | Federico Frenguelli | |
| when using AlterField. Thanks to Emanuele Palazzetti for the help. Backport of 3a36c8079544c83dcdea4e52181efcd2d1e86b9c from master | |||
| 2015-11-14 | [1.9.x] Refs #25745 -- Avoided multiple registration of the same model in ↵ | Simon Charette | |
| schema tests. Backport of 64240263f22055cb539159e9359e64d5096f39d9 from master | |||
| 2015-10-16 | [1.9.x] Used SchemaEditor.delete_model() for teardown in schema tests. | Tim Graham | |
| Some third-party database backends (MSSQL) have custom delete_model() requirements that must be executed. Thanks Michael Manfre for the initial patch and review. Backport of 4dcc2a195595f8d7ddad45bc4baf98ffdeec7f41 from master | |||
| 2015-09-23 | Refs #18081 -- Asserted db constraints are created for fk to proxy models. | Simon Charette | |
| 2015-09-21 | Fix import sorting problem. | Aymeric Augustin | |
| 2015-09-21 | Renamed descriptor classes for related objects. | Aymeric Augustin | |
| The old names were downright confusing. Some seemed to mean the opposite of what the class actually did. The new names follow a consistent nomenclature: (Forward|Reverse)(ManyToOne|OneToOne|ManyToMany)Descriptor. I mentioned combinations that do not exist in the docstring in order to help people who would search for them in the code base. | |||
| 2015-09-14 | Fixed #25393 -- Fixed MySQL crash when adding text/blob field with ↵ | Ville Skyttä | |
| unhashable default. | |||
| 2015-09-12 | Fixed #23395 -- Limited line lengths to 119 characters. | Dražen Odobašić | |
| 2015-08-08 | Used skipUnlessDBFeature where appropriate. | Simon Charette | |
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-07-15 | Fixed #25128 -- Fixed SQLite SchemaEditor crash when adding a ForeignObject ↵ | Tim Graham | |
| field. | |||
| 2015-06-24 | Refs #25002 -- Supported textual to temporal column alteration on Oracle. | Simon Charette | |
| Thanks to Tim Graham for the report and Shai Berger for the review. | |||
| 2015-06-22 | Fixed #25002 -- Used PostgreSQL column type alteration USING clause. | Simon Charette | |
| Thanks to Dirk Uys for the report. | |||
| 2015-06-15 | Fixed #24972 -- Fixed removing unique_together indexes on MySQL. | Adam Brenecki | |
| 2015-06-02 | Applied db_table conversion to fix schema tests on Oracle. | Tim Graham | |
| 2015-06-02 | Fixed #24893 -- Fixed lack of unique constraint when changing a field from ↵ | Tim Graham | |
| primary_key=True to unique=True | |||
| 2015-06-02 | Fixed #24892 -- Fixed quoting of SQL when renaming a field to AutoField in ↵ | Tim Graham | |
| PostgreSQL | |||
| 2015-05-30 | Fixed #24846 -- Added support to MySQL SchemaEditor for all blob/text data types | Adam Chainz | |
| 2015-05-28 | Fixed #24817 -- Prevented loss of null info in MySQL field renaming. | Andriy Sokolovskiy | |
| 2015-05-18 | Fixed #24812 -- Fixed app registry RuntimeWarnings in schema and migrations ↵ | Tim Graham | |
| tests. | |||
| 2015-05-15 | Fixed #24757 -- Recreated MySQL index when needed during combined index removal | Claude Paroz | |
| Thanks Thomas Recouvreux for the report and Tim Graham for the tests and review. | |||
| 2015-04-19 | Fixed #24658 -- Added missing Meta attribute in schema tests | Claude Paroz | |
| Without that, the Note model would be initially created and then the tests using that model failed when run in isolation. | |||
| 2015-04-18 | Fixed #24595 Oracle test failure | Shai Berger | |
| The only problem for Oracle was the test, which tested nullity on text/char fields -- but Oracle interprets_empty_strings_as_null. | |||
| 2015-04-17 | Fixed #24595 -- Prevented loss of null info in MySQL field alteration | Claude Paroz | |
| Thanks Simon Percivall for the report, and Simon Charette and Tim Graham for the reviews. | |||
| 2015-03-25 | Renamed Field.rel attribute to remote_field | Anssi Kääriäinen | |
| Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True. | |||
| 2015-03-07 | Fixed #24447 -- Made migrations add FK constraints for existing columns | Jean-Louis Fuchs | |
| When altering from e.g. an IntegerField to a ForeignKey, Django didn't add a constraint. | |||
| 2015-02-19 | Fixed #24307: Avoided redundant column nullability modifications on Oracle | Shai Berger | |
| Thanks Joris Benschop for the report, and Tim Graham for the tests. | |||
| 2015-02-16 | Merged ManyRelatedObjectsDescriptor and ReverseManyRelatedObjectsDescriptor | Loic Bistuer | |
| and made all "many" related objects descriptors inherit from ForeignRelatedObjectsDescriptor. | |||
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-02-06 | Fixed small regression caused by 0204714b0bdf10d7558ee106de9a718407f3ec5a | Markus Holtermann | |
| Since 1.7 models need to declare an explicit app_label if they are not in an application in INSTALLED_APPS or were imported before their application was loaded. | |||
| 2015-02-05 | Cleaned up schema tests | Markus Holtermann | |
| Thanks Tim Graham for the review. | |||
| 2015-01-31 | Fixed #24245 -- Added introspection for database defaults. | Tim Graham | |
| Needed for tests for migrations handling of database defaults. | |||
| 2015-01-22 | Fixed #24104 -- Fixed check to look on field.many_to_many instead of class ↵ | Andriy Sokolovskiy | |
| instance | |||
| 2015-01-20 | Refs #24163 -- Fixed failing Oracle test when migrating from ForeignKey to ↵ | Markus Holtermann | |
| OneToOneField Thanks Tim Graham for review | |||
| 2015-01-19 | Fixed #24163 -- Removed unique constraint after index on MySQL | Markus Holtermann | |
| Thanks Łukasz Harasimowicz for the report. | |||
| 2015-01-06 | Fixed #12663 -- Formalized the Model._meta API for retrieving fields. | Daniel Pyrathon | |
| Thanks to Russell Keith-Magee for mentoring this Google Summer of Code 2014 project and everyone else who helped with the patch! | |||
| 2014-12-30 | Fixed #23581 -- Prevented extraneous DROP DEFAULT statements. | Tim Graham | |
| Thanks john_scott for the report and Markus Holtermann for review. | |||
| 2014-12-15 | Fixed refs #23987 test on Oracle. | Tim Graham | |
| 2014-12-15 | Fixed #23987 -- Made SQLite SchemaEditor always use effective_default(). | Andriy Sokolovskiy | |
| 2014-12-08 | Fixed #23968 -- Replaced list comprehension with generators and dict ↵ | Jon Dufresne | |
| comprehension | |||
| 2014-12-04 | Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField. | Tim Graham | |
| Thanks wkornewald for the report and Markus Holtermann for review. | |||
