2021-11-13 14:07:08 +00:00
|
|
|
# Generated by Django 3.2.9 on 2021-11-13 14:05
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2022-02-10 00:00:30 +00:00
|
|
|
("core", "0015_add_nap_field_for_sleep"),
|
2021-11-13 14:07:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2022-02-10 00:00:30 +00:00
|
|
|
model_name="sleep",
|
|
|
|
name="napping",
|
|
|
|
field=models.BooleanField(
|
|
|
|
editable=False, null=True, verbose_name="Napping"
|
|
|
|
),
|
2021-11-13 14:07:08 +00:00
|
|
|
),
|
|
|
|
]
|