Issues (67)

migrations/0004_auto_20161116_1749.py (1 issue)

1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.9.10 on 2016-11-16 16:49
3
from __future__ import unicode_literals
4
5
from django.db import migrations, models
6
import django.db.models.deletion
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', '0003_auto_20161116_1745'),
13
    ]
14
15
    operations = [
16
        migrations.AlterField(
17
            model_name='customerdirectory',
18
            name='callee_norm',
19
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='caleenormrules', to='normalizationrule.NormalizationGroup', verbose_name='Destination number normalization rules'),
20
        ),
21
        migrations.AlterField(
22
            model_name='customerdirectory',
23
            name='callerid_norm',
24
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='calleridnormrules', to='normalizationrule.NormalizationGroup', verbose_name='CallerID normalization rules'),
25
        ),
26
    ]
27