did some shit
parent
9fb89c1807
commit
f00cc573fb
@ -0,0 +1,33 @@
|
|||||||
|
# Generated by Django 5.0.3 on 2025-01-02 20:18
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('api', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RenameModel(
|
||||||
|
old_name='Clients',
|
||||||
|
new_name='Client',
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='client',
|
||||||
|
options={'ordering': ['id']},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='moisture',
|
||||||
|
options={'ordering': ['id']},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='temperature',
|
||||||
|
options={'ordering': ['id']},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='waterlevel',
|
||||||
|
options={'ordering': ['id']},
|
||||||
|
),
|
||||||
|
]
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 5.0.3 on 2025-01-02 21:07
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('api', '0002_rename_clients_client_alter_client_options_and_more'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='moisture',
|
||||||
|
name='moisture',
|
||||||
|
field=models.FloatField(),
|
||||||
|
),
|
||||||
|
]
|
||||||
Binary file not shown.
Loading…
Reference in New Issue