Changes between Version 6 and Version 7 of SummerOfCode2022


Ignore:
Timestamp:
Feb 9, 2022, 10:19:07 AM (2 years ago)
Author:
Carlton Gibson
Comment:

Added Per field-instance lookups idea

Legend:

Unmodified
Added
Removed
Modified
  • SummerOfCode2022

    v6 v7  
    183183Adjusting `DatabaseSchemaEditor.sql_create_fk()` to be able to use the native options is the beginning.
    184184
     185
     186== Per field-instance lookups ==
     187
     188There's a ticket to [https://code.djangoproject.com/ticket/29799 Allow registration and unregistration of lookups per field instances].
     189
     190You may want a [https://docs.djangoproject.com/en/4.0/howto/custom-lookups/ custom lookup] not for every instance of a `Field`, but just **this** instance, on **this** model.
     191
     192Implementing that would be a lovely addition to the ORM.
     193
     194
     195
    185196... MORE IDEAS INCOMING ...
    186197
Back to Top