Added evolutions from live to SSO

This commit is contained in:
2010-04-02 19:02:52 +01:00
parent 4c6b5ddd9f
commit 33914c7a8d
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1 @@
SEQUENCE = ['uid_fix']

View File

@@ -0,0 +1,6 @@
from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('ServiceAccount', 'service_uid', models.CharField, max_length=200, blank=False)
]