Foreign key User on migration‏

2014-08-04 Thread Sam Contapay
Hi, I tried adding a foreign key to a model in a Django app I'm building to learn 1.7. I am using Python 3.4 and Django 1.7c2 #blog/models.py from django.contrib.auth.models import User from django.db import models class Comment(models.Model): user = models.ForeignKey(User, blank=True, nul

Re: Foreign key User on migration‏

2014-08-04 Thread Sam Contapay
I downloaded the latest code from stable/1.7.x branch and this problem no longer exists. On Monday, August 4, 2014 8:06:00 AM UTC-7, Sam Contapay wrote: > > Hi, > > I tried adding a foreign key to a model in a Django app I'm building to > learn 1.7. I am using Python 3.4 and Django 1.7c2 > > #bl