Is Django 1.6 with South 0.8 going to set default value when I add a column with default
value to existing data having the field described like this?
gametype = models.PositiveSmallIntegerField(_('type of game'),
choices=CONST_TYPES,
default=CONST_TYPE_NORMAL,
null=True, blank=True)
I am worrying about having null=True
at the same time with default
specified
It depends on whether gametype is a new field or not.