mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
parent
71026c338c
commit
b6cb20ccfa
23
InvenTree/common/migrations/0021_auto_20230805_1748.py
Normal file
23
InvenTree/common/migrations/0021_auto_20230805_1748.py
Normal file
@ -0,0 +1,23 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
@ -582,7 +582,7 @@ class BaseInvenTreeSetting(models.Model):
|
||||
|
||||
key = models.CharField(max_length=50, blank=False, unique=False, help_text=_('Settings key (must be unique - case insensitive)'))
|
||||
|
||||
value = models.CharField(max_length=200, blank=True, unique=False, help_text=_('Settings value'))
|
||||
value = models.CharField(max_length=2000, blank=True, unique=False, help_text=_('Settings value'))
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
|
23
InvenTree/plugin/migrations/0007_auto_20230805_1748.py
Normal file
23
InvenTree/plugin/migrations/0007_auto_20230805_1748.py
Normal file
@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.20 on 2023-08-05 17:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('plugin', '0006_pluginconfig_metadata'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='notificationusersetting',
|
||||
name='value',
|
||||
field=models.CharField(blank=True, help_text='Settings value', max_length=2000),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='pluginsetting',
|
||||
name='value',
|
||||
field=models.CharField(blank=True, help_text='Settings value', max_length=2000),
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user