0041_ipresource_last_ping.py 515 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.9 on 2018-01-22 21:57
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('services', '0040_remove_service_active'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='ipresource',
  12. name='last_ping',
  13. field=models.DateTimeField(blank=True, null=True, verbose_name='Dernière réponse au ping'),
  14. ),
  15. ]