Files
test-auth/sso/evolutions/uid_fix.py

7 lines
181 B
Python

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