2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-10 05:40:55 +00:00

Load default settings on InvenTree launch

This commit is contained in:
Oliver Walters
2020-02-03 20:51:53 +11:00
parent 4b8e44bc4a
commit 356b6cf15b
5 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# Generated by Django 2.2.9 on 2020-02-03 09:51
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('common', '0005_auto_20190915_1256'),
]
operations = [
migrations.AlterModelOptions(
name='inventreesetting',
options={'verbose_name': 'InvenTree Setting', 'verbose_name_plural': 'InvenTree Settings'},
),
]