mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-22 11:38:45 -06:00
Created migrations for transition to Unicode literals
This commit is contained in:
20
netbox/tenancy/migrations/0003_unicode_literals.py
Normal file
20
netbox/tenancy/migrations/0003_unicode_literals.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2017-05-24 15:34
|
||||
from __future__ import unicode_literals
|
||||
|
||||
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),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user