15 lines
268 B
Python
15 lines
268 B
Python
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
("sensor_data", "0004_alter_sensordata_location"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.DeleteModel(
|
||
|
|
name="SensorDataHistory",
|
||
|
|
),
|
||
|
|
]
|