From 2e199e02835b896bb789ee8b87f9a5fe245f6914 Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Wed, 27 May 2015 22:23:47 +0200 Subject: [PATCH] migration for the previous commit --- .../0013_servicepattern_single_sign_out.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 cas_server/migrations/0013_servicepattern_single_sign_out.py diff --git a/cas_server/migrations/0013_servicepattern_single_sign_out.py b/cas_server/migrations/0013_servicepattern_single_sign_out.py new file mode 100644 index 0000000..8d4a71b --- /dev/null +++ b/cas_server/migrations/0013_servicepattern_single_sign_out.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('cas_server', '0012_auto_20150527_1956'), + ] + + operations = [ + migrations.AddField( + model_name='servicepattern', + name='single_sign_out', + field=models.BooleanField(default=False, help_text=b'Activer le SSO sur le service'), + preserve_default=True, + ), + ]