﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
23731	PointField does not allow setting blank=True and null=False	George Tantiras	Tim Graham	"The following code worked nicely in Python 3.3 / Django 1.6.x:


{{{
from django.contrib.gis.db import models

class Coordinates(models.Model):

    point = models.PointField(blank=True,null=False)
    objects = models.GeoManager()

}}}

However, in Python 3.3 / Django 1.7.1:

{{{
$ ./manage.py makemigrations
$ ./manage.py migrate
}}}


{{{
...
ValueError: String or unicode input unrecognized as WKT EWKT, and HEXEWKB.
}}}
"	Bug	closed	GIS	1.7	Release blocker	fixed	PointField, gis		Accepted	1	0	0	0	0	0
