mirror of
https://github.com/daniviga/bite.git
synced 2024-11-23 21:36:14 +01:00
Daniele Viganò
e4a3684951
* Add ntpd server to the stack * Enable NTP updates on Arduino * Fix telemetry when clock is 0
18 lines
394 B
Python
18 lines
394 B
Python
# Generated by Django 3.0.6 on 2020-06-03 13:17
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('telemetry', '0005_telemetry_clock'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='telemetry',
|
|
options={'ordering': ['-time', 'device'], 'verbose_name_plural': 'Telemetry'},
|
|
),
|
|
]
|