migration for the previous commit
This commit is contained in:
parent
54a79dacdd
commit
2e199e0283
1 changed files with 20 additions and 0 deletions
20
cas_server/migrations/0013_servicepattern_single_sign_out.py
Normal file
20
cas_server/migrations/0013_servicepattern_single_sign_out.py
Normal 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,
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue