0017_item_deployed.py 503 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('hardware_provisioning', '0016_auto_20170802_2021'),
  7. ]
  8. operations = [
  9. migrations.AddField(
  10. model_name='item',
  11. name='deployed',
  12. field=models.BooleanField(default=False, help_text='Cocher si le mat\xe9riel est en production', verbose_name='d\xe9ploy\xe9'),
  13. ),
  14. ]