0016_auto_20170802_2021.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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', '0015_auto_20170802_1701'),
  9. ]
  10. operations = [
  11. migrations.RemoveField(
  12. model_name='item',
  13. name='deployed',
  14. ),
  15. migrations.AlterField(
  16. model_name='item',
  17. name='mac_address',
  18. 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='adresse MAC'),
  19. ),
  20. migrations.AlterField(
  21. model_name='item',
  22. name='owner',
  23. 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'),
  24. ),
  25. migrations.AlterField(
  26. model_name='item',
  27. name='serial',
  28. field=models.CharField(null=True, max_length=250, blank=True, help_text='ou toute autre r\xe9f\xe9rence unique', unique=True, verbose_name='N\xb0 de s\xe9rie'),
  29. ),
  30. ]