0015_auto_20170802_1701.py 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. from django.conf import settings
  5. import hardware_provisioning.fields
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('hardware_provisioning', '0014_auto_20170422_1847'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='item',
  13. name='deployed',
  14. field=models.BooleanField(default=False, help_text='Cocher si le mat\xe9riel est en production', verbose_name='d\xe9ploy\xe9'),
  15. ),
  16. migrations.AlterField(
  17. model_name='item',
  18. name='mac_address',
  19. field=hardware_provisioning.fields.MACAddressField(null=True, max_length=17, blank=True, help_text='Pr\xe9f\xe9rable au n\xb0 de s\xe9rie si possible', unique=True, verbose_name='addresse MAC'),
  20. ),
  21. migrations.AlterField(
  22. model_name='item',
  23. name='owner',
  24. field=models.ForeignKey(related_name='items', blank=True, to=settings.AUTH_USER_MODEL, help_text="Dans le cas de mat\xe9riel n'appartenant pas \xe0 l'association", null=True, verbose_name='Propri\xe9taire'),
  25. ),
  26. ]