Skip to content

Commit

Permalink
increase integer size for extent number, fixes #338
Browse files Browse the repository at this point in the history
  • Loading branch information
helrond committed Aug 12, 2019
1 parent 016121a commit 4f36567
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion aurora/bag_transfer/accession/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Accession(models.Model):
start_date = models.DateTimeField()
end_date = models.DateTimeField()
extent_files = models.PositiveIntegerField()
extent_size = models.PositiveIntegerField()
extent_size = models.BigIntegerField()
creators = models.ManyToManyField(RecordCreators, blank=True)
description = models.TextField()
access_restrictions = models.TextField()
Expand Down
20 changes: 20 additions & 0 deletions aurora/bag_transfer/migrations/0025_auto_20190812_1455.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.21 on 2019-08-12 18:55
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('bag_transfer', '0024_auto_20190617_1614'),
]

operations = [
migrations.AlterField(
model_name='accession',
name='extent_size',
field=models.BigIntegerField(),
),
]

0 comments on commit 4f36567

Please sign in to comment.