0020_rack_desc_units.py 493 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10 on 2016-10-28 15:01
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('dcim', '0019_new_iface_form_factors'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='rack',
  11. name='desc_units',
  12. field=models.BooleanField(default=False, help_text=b'Units are numbered top-to-bottom', verbose_name=b'Descending units'),
  13. ),
  14. ]