mirror of
https://github.com/daniviga/bite.git
synced 2024-11-23 13:26:14 +01:00
Daniele Viganò
a7cebefbf5
* Add MQTT support on Arduino * Add MQTT simulator * Use a single python simulator * Minor improvements to dockerfiles * Add transport internal field to telemetry * Add PubSubClient
19 lines
453 B
Python
19 lines
453 B
Python
# Generated by Django 3.0.6 on 2020-06-08 20:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('telemetry', '0006_auto_20200603_1317'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='telemetry',
|
|
name='transport',
|
|
field=models.CharField(choices=[('http', 'http'), ('mqtt', 'mqtt')], default='http', max_length=4),
|
|
),
|
|
]
|