class View(models.Model):
field = models.CharField(max_length=4)
class Meta:
managed=False
db_table = 'view' #database view
class Child(models.Model):
view = models.ForeignKey(View, on_delete=models.CASCADE,
to_field='field', db_constraint=False)
makemigrations on above will have the *view* field of type integer while it
should be varcher(4)
This is my first post to the forum. Please inform if something is amiss.
Thank You
--
You received this message because you are subscribed to the Google Groups
"Django developers (Contributions to Django itself)" 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-developers/02c505e5-7d6c-4285-a80a-baea5764bf4en%40googlegroups.com.