mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
19 lines
662 B
Python
19 lines
662 B
Python
# Generated by Django 3.0.7 on 2021-01-13 19:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0003_auto_20201005_2227'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ruleset',
|
|
name='name',
|
|
field=models.CharField(choices=[('admin', 'Admin'), ('part_category', 'Part Categories'), ('part', 'Parts'), ('stock_location', 'Stock Locations'), ('stock', 'Stock Items'), ('build', 'Build Orders'), ('purchase_order', 'Purchase Orders'), ('sales_order', 'Sales Orders')], help_text='Permission set', max_length=50),
|
|
),
|
|
]
|