mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.12 on 2018-06-13 17:14
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('circuits', '0011_tags'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='circuittype',
|
|
name='created',
|
|
field=models.DateField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='circuittype',
|
|
name='last_updated',
|
|
field=models.DateTimeField(auto_now=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='circuit',
|
|
name='created',
|
|
field=models.DateField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='circuit',
|
|
name='last_updated',
|
|
field=models.DateTimeField(auto_now=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='provider',
|
|
name='created',
|
|
field=models.DateField(auto_now_add=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='provider',
|
|
name='last_updated',
|
|
field=models.DateTimeField(auto_now=True, null=True),
|
|
),
|
|
]
|