mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
Added evolutions from live to SSO
This commit is contained in:
1
sso/evolutions/__init__.py
Normal file
1
sso/evolutions/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
SEQUENCE = ['uid_fix']
|
||||
6
sso/evolutions/uid_fix.py
Normal file
6
sso/evolutions/uid_fix.py
Normal 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)
|
||||
]
|
||||
Reference in New Issue
Block a user