2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

Add "upload date" field to fileattachment base class

This commit is contained in:
Oliver Walters
2020-05-12 20:57:41 +10:00
parent d4fa7d936e
commit 5d716d0cdd
5 changed files with 66 additions and 2 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 3.0.5 on 2020-05-12 10:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('order', '0033_auto_20200512_1033'),
]
operations = [
migrations.AddField(
model_name='purchaseorderattachment',
name='upload_date',
field=models.DateField(auto_now_add=True, null=True),
),
migrations.AddField(
model_name='salesorderattachment',
name='upload_date',
field=models.DateField(auto_now_add=True, null=True),
),
]