mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
222388b988
This reverts commit 874685fd6f6b463e68fd2eef4711aa6765371a17.
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
# Generated by Django 4.1.9 on 2023-06-06 18:15
|
|
|
|
import django.contrib.auth.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('auth', '0012_alter_user_first_name_max_length'),
|
|
('users', '0003_token_allowed_ips_last_used'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='NetBoxGroup',
|
|
fields=[],
|
|
options={
|
|
'verbose_name': 'Group',
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('auth.group',),
|
|
managers=[
|
|
('objects', django.contrib.auth.models.GroupManager()),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='NetBoxUser',
|
|
fields=[],
|
|
options={
|
|
'verbose_name': 'User',
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('auth.user',),
|
|
managers=[
|
|
('objects', django.contrib.auth.models.UserManager()),
|
|
],
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='netboxgroup',
|
|
options={'ordering': ('name',), 'verbose_name': 'Group'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='netboxuser',
|
|
options={'ordering': ('username',), 'verbose_name': 'User'},
|
|
),
|
|
]
|