0048_rack_serial.py 491 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.4 on 2017-10-09 18:50
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('dcim', '0047_more_100ge_form_factors'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='rack',
  12. name='serial',
  13. field=models.CharField(blank=True, max_length=50, verbose_name='Serial number'),
  14. ),
  15. ]