Issues (67)

did/migrations/0005_auto_20161129_0924.py (1 issue)

1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.9.10 on 2016-11-29 08:24
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
        ('did', '0004_auto_20161029_1134'),
12
    ]
13
14
    operations = [
15
        migrations.AlterField(
16
            model_name='did',
17
            name='cust_max_channels',
18
            field=models.PositiveIntegerField(blank=True, default=0, help_text='maximum simultaneous calls allowed\n            for this did. 0 means no limit', null=True, verbose_name='customer channels'),
19
        ),
20
        migrations.AlterField(
21
            model_name='did',
22
            name='prov_max_channels',
23
            field=models.PositiveIntegerField(default=0, help_text='maximum simultaneous calls allowed\n            for this did. 0 means no limit', verbose_name='provider channels'),
24
        ),
25
    ]
26