mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-21 16:56:47 +00:00
b6cb20ccfa
Closes #5400
24 lines
637 B
Python
24 lines
637 B
Python
# Generated by Django 3.2.20 on 2023-08-05 17:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('common', '0020_customunit'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='inventreesetting',
|
|
name='value',
|
|
field=models.CharField(blank=True, help_text='Settings value', max_length=2000),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='inventreeusersetting',
|
|
name='value',
|
|
field=models.CharField(blank=True, help_text='Settings value', max_length=2000),
|
|
),
|
|
]
|