mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
cb29ff14e0
- Build creation date should no longer get erroneously updated
19 lines
394 B
Python
19 lines
394 B
Python
# Generated by Django 2.2.9 on 2020-02-10 10:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('build', '0008_auto_20200201_1247'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='build',
|
|
name='creation_date',
|
|
field=models.DateField(auto_now_add=True),
|
|
),
|
|
]
|