Issues (67)

migrations/0017_auto_20180207_1116.py (1 issue)

1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.11.10 on 2018-02-07 10:16
3
from __future__ import unicode_literals
4
5
from django.db import migrations, models
6
import pyfreebilling.customerdirectory.models
7
8
9 View Code Duplication
class Migration(migrations.Migration):
0 ignored issues
show
This code seems to be duplicated in your project.
Loading history...
10
11
    dependencies = [
12
        ('customerdirectory', '0016_auto_20170522_1123'),
13
    ]
14
15
    operations = [
16
        migrations.AlterField(
17
            model_name='customerdirectory',
18
            name='password',
19
            field=models.CharField(blank=True, default=pyfreebilling.customerdirectory.models.random_string, help_text="It's recommended to use strong\n                                passwords for the endpoint.", max_length=100, verbose_name='password'),
20
        ),
21
        migrations.AlterField(
22
            model_name='customerdirectory',
23
            name='registration',
24
            field=models.BooleanField(default=True, help_text='Is registration needed\n                                       for calling ? True, the phone needs to\n                                       register with correct username/password.\n                                       If false, you must specify a CIDR in SIP\n                                       IP CIDR !', verbose_name='Registration'),
25
        ),
26
    ]
27