mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-21 21:02:23 -06:00
28 lines
559 B
Python
28 lines
559 B
Python
# Generated by Django 4.1.10 on 2023-07-30 17:49
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('users', '0002_squashed_0004'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='UserToken',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'token',
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('users.token',),
|
|
),
|
|
]
|