mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
468 B
Python
19 lines
468 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-05-24 15:34
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tenancy', '0002_tenant_group_optional'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='tenant',
|
|
name='description',
|
|
field=models.CharField(blank=True, help_text='Long-form name (optional)', max_length=100),
|
|
),
|
|
]
|