mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +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)
|
|
]
|