Fix: made brand nullable
This commit is contained in:
18
asset/migrations/0004_alter_gtinproduct_brand.py
Normal file
18
asset/migrations/0004_alter_gtinproduct_brand.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.0.3 on 2022-04-13 14:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('asset', '0003_gtinproduct'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='gtinproduct',
|
||||
name='brand',
|
||||
field=models.CharField(blank=True, max_length=40, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user