migration for the previous commit

This commit is contained in:
Valentin Samir 2015-05-27 22:23:47 +02:00
parent 54a79dacdd
commit 2e199e0283
1 changed files with 20 additions and 0 deletions

View File

@ -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,
),
]