26 lines
757 B
Python
26 lines
757 B
Python
# Generated by Django 5.2.8 on 2025-11-21 10:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='WeatherStats',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('humidityAir', models.FloatField(default=0)),
|
|
('humidityGround', models.FloatField(default=0)),
|
|
('temperature', models.FloatField(default=0)),
|
|
('light', models.FloatField(default=0)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|