Issues (67)

did/migrations/0006_auto_20161129_0935.py (1 issue)

1
# -*- coding: utf-8 -*-
2
# Generated by Django 1.9.10 on 2016-11-29 08:35
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
        ('pyfreebill', '0012_auto_20161118_1758'),
13
        ('did', '0005_auto_20161129_0924'),
14
    ]
15
16
    operations = [
17
        migrations.AddField(
18
            model_name='did',
19
            name='cust_ratecard',
20
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='pyfreebill.RateCard', verbose_name='Customer rate plan'),
21
        ),
22
        migrations.AddField(
23
            model_name='did',
24
            name='prov_ratecard',
25
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='pyfreebill.ProviderTariff', verbose_name='provider rate plan'),
26
        ),
27
    ]
28