mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-19 05:25:42 +00:00
23
InvenTree/plugin/migrations/0001_initial.py
Normal file
23
InvenTree/plugin/migrations/0001_initial.py
Normal file
@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.5 on 2021-11-11 23:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='PluginConfig',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('key', models.CharField(help_text='Key of plugin', max_length=255, unique=True, verbose_name='Key')),
|
||||
('name', models.CharField(blank=True, help_text='PluginName of the plugin', max_length=255, null=True, verbose_name='Name')),
|
||||
('active', models.BooleanField(default=False, help_text='Is the plugin active', verbose_name='Active')),
|
||||
],
|
||||
),
|
||||
]
|
0
InvenTree/plugin/migrations/__init__.py
Normal file
0
InvenTree/plugin/migrations/__init__.py
Normal file
Reference in New Issue
Block a user