mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
# Generated by Django 4.0.2 on 2022-02-08 18:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0071_standardize_id_fields'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='configcontext',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='customfield',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='customlink',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='exporttemplate',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='imageattachment',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='journalentry',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='tag',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='webhook',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
]
|