Skip to content

Commit

Permalink
Fix ProcessedDataFile.records_count field?
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonje committed Aug 9, 2017
1 parent 5ffbe66 commit a3bf2cf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions calaccess_processed/migrations/0002_auto_20170809_1539.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.3 on 2017-08-09 15:39
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('calaccess_processed', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='processeddatafile',
name='records_count',
field=models.IntegerField(default=0, help_text='Count of records in the processed file', verbose_name='records count'),
),
]
2 changes: 1 addition & 1 deletion calaccess_processed/models/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class ProcessedDataFile(models.Model):
records_count = models.IntegerField(
null=False,
default=0,
verbose_name='clean records count',
verbose_name='records count',
help_text='Count of records in the processed file'
)
file_archive = models.FileField(
Expand Down

0 comments on commit a3bf2cf

Please sign in to comment.