Added initial value to evolution

This commit is contained in:
2010-04-02 19:40:01 +01:00
parent abd1644098
commit be12cbf90a

View File

@@ -2,6 +2,6 @@ from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('RedditAccount', 'validated', models.BooleanField),
AddField('RedditAccount', 'validated', models.BooleanField, initial=False),
]