21 lines
513 B
Python
21 lines
513 B
Python
|
# Generated by Django 4.0 on 2022-05-15 06:48
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('room', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='TempCorrection',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('correction', models.JSONField(default=list)),
|
||
|
],
|
||
|
),
|
||
|
]
|