19 lines
441 B
Python
19 lines
441 B
Python
|
# Generated by Django 2.1.3 on 2018-11-25 20:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('manager', '0004_network_organizations'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='device',
|
||
|
name='lasttime',
|
||
|
field=models.DateTimeField(blank=True, null=True, verbose_name='Last Received Heartbeat'),
|
||
|
),
|
||
|
]
|