20 lines
542 B
Python
20 lines
542 B
Python
# Generated by Django 5.2.12 on 2026-03-19 15:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('plant', '0001_initial'),
|
|
('sensor_data', '0002_seed_initial_parameters'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='sensordata',
|
|
name='plants',
|
|
field=models.ManyToManyField(blank=True, help_text='گیاهان مرتبط با این سنسور', related_name='sensor_data', to='plant.plant'),
|
|
),
|
|
]
|