Added validated field to Reddit account

This commit is contained in:
2010-04-02 19:04:01 +01:00
parent 33914c7a8d
commit 795066dfaa
3 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('RedditAccount', 'validated', models.BooleanField),
]