Passed
Push — master ( bd2622...f167a9 )
by Paolo
06:51
created

validation.migrations.0004_auto_20200225_1654   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 13
dl 0
loc 21
rs 10
c 0
b 0
f 0
1
# Generated by Django 2.2.10 on 2020-02-25 15:54
2
3
from django.db import migrations
4
5
6
class Migration(migrations.Migration):
7
8
    dependencies = [
9
        ('validation', '0003_auto_20200225_1651'),
10
    ]
11
12
    operations = [
13
        migrations.RenameField(
14
            model_name='validationsummary',
15
            old_name='new_messages',
16
            new_name='messages',
17
        ),
18
        migrations.RemoveField(
19
            model_name='validationsummary',
20
            name='old_messages',
21
        ),
22
    ]
23