Add lot to stock model.
This commit is contained in:
18
shimatta_kenkyusho/parts/migrations/0007_stock_lot.py
Normal file
18
shimatta_kenkyusho/parts/migrations/0007_stock_lot.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.5 on 2021-12-30 22:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('parts', '0006_auto_20211114_1524'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='stock',
|
||||
name='lot',
|
||||
field=models.CharField(blank=True, max_length=255, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user