From a2a32f398a32f82018e404fab70aa28a4e99d9d8 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 20 Apr 2010 14:09:01 +0100 Subject: [PATCH] Updated evolution --- eve_api/evolutions/total-sp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eve_api/evolutions/total-sp.py b/eve_api/evolutions/total-sp.py index 8f1b5f1..b0412dd 100644 --- a/eve_api/evolutions/total-sp.py +++ b/eve_api/evolutions/total-sp.py @@ -2,6 +2,6 @@ from django_evolution.mutations import * from django.db import models MUTATIONS = [ - AddField('EVEPlayerCharacter', 'total_sp', models.IntegerField, initial=0) + AddField('EVEPlayerCharacter', 'total_sp', models.IntegerField, null=True) ]