mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
6e8c1bcc84
- Buttons to edit or delete existing attachments - Button to add a new attachment - Fixed conflicting migrations
24 lines
606 B
Python
24 lines
606 B
Python
# Generated by Django 2.2 on 2019-04-28 13:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0011_auto_20190428_0841'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='part',
|
|
name='active',
|
|
field=models.BooleanField(default=True, help_text='Is this part active?'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='partattachment',
|
|
name='comment',
|
|
field=models.CharField(blank=True, help_text='File comment', max_length=100),
|
|
),
|
|
]
|