mirror of https://gitlab.federez.net/re2o/re2o
4 changed files with 64 additions and 5 deletions
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.23 on 2019-10-08 11:35 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('preferences', '0063_mandate'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='mailmessageoption', |
|||
name='welcome_mail_en', |
|||
field=models.TextField(blank=True, default='', help_text='Welcome email in English'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='mailmessageoption', |
|||
name='welcome_mail_fr', |
|||
field=models.TextField(blank=True, default='', help_text='Welcome email in French'), |
|||
), |
|||
] |
|||
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.23 on 2019-10-10 10:27 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('preferences', '0064_auto_20191008_1335'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='radiuskey', |
|||
name='default_switch', |
|||
field=models.BooleanField(default=False, help_text='Default key for switches'), |
|||
), |
|||
] |
|||
Loading…
Reference in new issue