Prueba:
ALTER TABLE django_content_type MODIFY COLUMN name character varying(50) NOT NULL DEFAULT 'not null';
O si quieres que esté vacío:
ALTER TABLE django_content_type MODIFY COLUMN name character varying(50) NOT NULL DEFAULT '';
Tomado de aquí:https://github.com/arteria/django-background -tareas/problemas/139