2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Remove special characters restriction in category names (#3370)

* [FR]Special characters restriction in category names
Fixes #3358

* remove old validation test
This commit is contained in:
Matthias Mair
2022-07-21 03:33:21 +02:00
committed by GitHub
parent aca58dedc0
commit 09987ad79b
5 changed files with 37 additions and 20 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2.14 on 2022-07-20 16:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('stock', '0078_alter_stockitem_supplier_part'),
]
operations = [
migrations.AlterField(
model_name='stocklocation',
name='name',
field=models.CharField(help_text='Name', max_length=100, verbose_name='Name'),
),
]