mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
7 lines
181 B
Python
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)
|
|
]
|