2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-09-13 06:01:35 +00:00

use BigIntegerField for a hugher range ;-)

This commit is contained in:
Matthias
2021-12-01 22:39:53 +01:00
parent 413968a979
commit 3b5e9d3283
3 changed files with 42 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.5 on 2021-12-01 21:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('build', '0033_auto_20211128_0151'),
]
operations = [
migrations.AlterField(
model_name='build',
name='reference_int',
field=models.BigIntegerField(default=0),
),
]