mirror of
https://github.com/daniviga/bite.git
synced 2024-11-23 13:26:14 +01:00
Daniele Viganò
e4a3684951
* Add ntpd server to the stack * Enable NTP updates on Arduino * Fix telemetry when clock is 0
20 lines
475 B
Python
20 lines
475 B
Python
# Generated by Django 3.0.6 on 2020-06-03 13:08
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('telemetry', '0004_auto_20200602_2132'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='telemetry',
|
|
name='clock',
|
|
field=models.IntegerField(null=True, validators=[django.core.validators.MinValueValidator(0)]),
|
|
),
|
|
]
|