mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
11 lines
250 B
Python
11 lines
250 B
Python
#----- Evolution for sso
|
|
from django_evolution.mutations import *
|
|
from django.db import models
|
|
from django_jsonfield.fields import JSONField
|
|
|
|
MUTATIONS = [
|
|
AddField('Service', 'settings_json', JSONField, initial='{}'),
|
|
]
|
|
#----------------------
|
|
|