Django South - Create Not Null ForeignKey
问题 I have a Model class Mystery(models.Model): first = models.CharField(max_length=256) second = models.CharField(max_length=256) third = models.CharField(max_length=256) player = models.ForeignKey(Player) I added the player ForeignKey but when I try to migrate it using South it seems that I can't create this whith a null=False. I have this message : The field 'Mystery.player' does not have a default specified, yet is NOT NULL. Since you are adding this field, you MUST specify a default value to