Issues (67)

migrations/0007_auto_20161129_0913.py (1 issue)

1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.9.10 on 2016-11-29 08:13
3
from __future__ import unicode_literals
4
5
from django.db import migrations, models
6
7
8 View Code Duplication
class Migration(migrations.Migration):
0 ignored issues
show
This code seems to be duplicated in your project.
Loading history...
9
10
    dependencies = [
11
        ('customerdirectory', '0006_auto_20161117_1202'),
12
    ]
13
14
    operations = [
15
        migrations.AddField(
16
            model_name='customerdirectory',
17
            name='force_caller_id',
18
            field=models.BooleanField(default=False, verbose_name='Force callerID'),
19
        ),
20
        migrations.AddField(
21
            model_name='customerdirectory',
22
            name='insee_code',
23
            field=models.PositiveIntegerField(blank=True, help_text='Postal code, INSEE code ... for routing\n          urgency number to the right urgency call center.', null=True, verbose_name='Special code for routing urgency numbers'),
24
        ),
25
        migrations.AddField(
26
            model_name='customerdirectory',
27
            name='masq_caller_id',
28
            field=models.BooleanField(default=False, verbose_name='Masq callerID'),
29
        ),
30
        migrations.AddField(
31
            model_name='customerdirectory',
32
            name='urgency_numbr',
33
            field=models.BooleanField(default=True, help_text='You have also to allow global routing option\n          and define an urgency ratecard', verbose_name='Allow urgency numbers'),
34
        ),
35
    ]
36