Services can have their settings defined in-model

This commit is contained in:
2010-05-11 13:04:49 +01:00
parent 64b4d73617
commit 890c8f228e
4 changed files with 52 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
#----- 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='{}'),
]
#----------------------