1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Documentation & clenaup for #9536

This commit is contained in:
jeremystretch
2022-06-23 12:09:00 -04:00
parent 4f33685ca7
commit dc05e62ce0
7 changed files with 23 additions and 26 deletions

View File

@@ -1,7 +1,5 @@
# Generated by Django 3.2.12 on 2022-04-19 12:37
import django.contrib.postgres.fields
from django.db import migrations
from django.db import migrations, models
import ipam.fields
@@ -17,4 +15,9 @@ class Migration(migrations.Migration):
name='allowed_ips',
field=django.contrib.postgres.fields.ArrayField(base_field=ipam.fields.IPNetworkField(), blank=True, null=True, size=None),
),
migrations.AddField(
model_name='token',
name='last_used',
field=models.DateTimeField(blank=True, null=True),
),
]

View File

@@ -1,18 +0,0 @@
# Generated by Django 4.0.4 on 2022-06-16 15:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0002_standardize_id_fields'),
]
operations = [
migrations.AddField(
model_name='token',
name='last_used',
field=models.DateTimeField(blank=True, null=True),
),
]