Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1661 closed defect (fixed)

Forward declaration of OneToOneField requires 'to_field' to avoid import failure — at Version 1

Reported by: Russell Keith-Magee Owned by: Russell Keith-Magee
Component: Database layer (models, ORM) Version: magic-removal
Severity: normal Keywords:
Cc: lists@… Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Russell Keith-Magee)

njharman (lists@…) reports:

class Foo(models.Model):
   myfield = models.OneToOneField('SomeModel', to_field='id')

Works.

class Foo(models.Model):
   myfield = models.OneToOneField('SomeModel')

Fails because whatever "turns" 'SomeModel' from string into class object
hasn't happened when code in
"/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/django/db/models/fields/related.py
on line 510 tries to determine default to_field.


Model is ok during syncdb; failure occurs during import.

Change History (1)

comment:1 by Russell Keith-Magee, 18 years ago

Description: modified (diff)
Resolution: fixed
Status: newclosed

(In #3197) Fixed #1661 -- Added logic for string-form model references in the 'to' argument of OneToOneFields?. Includes regression test.

Note: See TracTickets for help on using tickets.
Back to Top