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