#25012: Migrations don't make foreign key type changes
-------------------------------------+------------------------------------
Reporter: Hedde van der Heide | Owner: nobody
Type: Bug | Status: new
Component: Migrations | Version: master
Severity: Normal | Resolution:
Keywords: migrations | Triage Stage: Accepted
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+------------------------------------
Description changed by Tim Graham:
Old description:
> Example:
>
> {{{
> #!div style="font-size: 80%"
> {{{#!python
> class Foo(models.Model):
> id = models.AutoField() # Now change this to
> models.CharField(primary_key=True, max_length=...) and migrate, the
> migration doesn't complain
>
> class Bar(object):
> foo = models.ForeignKey(Foo) # but Postgres will still say
> Bar.foo is an Integer value.
> }}}
> }}}
>
> DataError at /myapp/bar/add/
> invalid input syntax for integer: "TEST"
> LINE 1: ...d") VALUES (NULL, 'TEST', ...
New description:
Example:
{{{#!python
class Foo(models.Model):
id = models.AutoField() # Now change this to
models.CharField(primary_key=True, max_length=...) and migrate, the
migration doesn't complain
class Bar(object):
foo = models.ForeignKey(Foo) # but Postgres will still say Bar.foo is
an Integer value.
}}}
{{{
DataError at /myapp/bar/add/
invalid input syntax for integer: "TEST"
LINE 1: ...d") VALUES (NULL, 'TEST', ...
}}}
--
--
Ticket URL: <https://code.djangoproject.com/ticket/25012#comment:12>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/063.2afa245407531b69772d823da5feae30%40djangoproject.com.