mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
|
# Generated by Django 3.0.6 on 2020-05-29 14:30
|
||
|
|
||
|
import django.contrib.auth.models
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('auth', '0011_update_proxy_permissions'),
|
||
|
('users', '0006_create_userconfigs'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Group',
|
||
|
fields=[
|
||
|
],
|
||
|
options={
|
||
|
'proxy': True,
|
||
|
'indexes': [],
|
||
|
'constraints': [],
|
||
|
},
|
||
|
bases=('auth.group',),
|
||
|
managers=[
|
||
|
('objects', django.contrib.auth.models.GroupManager()),
|
||
|
],
|
||
|
),
|
||
|
migrations.CreateModel(
|
||
|
name='User',
|
||
|
fields=[
|
||
|
],
|
||
|
options={
|
||
|
'proxy': True,
|
||
|
'indexes': [],
|
||
|
'constraints': [],
|
||
|
},
|
||
|
bases=('auth.user',),
|
||
|
managers=[
|
||
|
('objects', django.contrib.auth.models.UserManager()),
|
||
|
],
|
||
|
),
|
||
|
]
|