62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
# Generated by Django 6.0.7 on 2026-07-17 11:35
|
|
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("tracker", "0002_scheduleddose_reminder_time_remindersent"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="DailyNote",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
(
|
|
"date",
|
|
models.DateField(
|
|
default=django.utils.timezone.localdate, unique=True
|
|
),
|
|
),
|
|
("body", models.TextField(blank=True)),
|
|
("updated_at", models.DateTimeField(auto_now=True)),
|
|
],
|
|
options={
|
|
"ordering": ["-date"],
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name="GlobalNote",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("body", models.TextField(blank=True)),
|
|
("updated_at", models.DateTimeField(auto_now=True)),
|
|
],
|
|
options={
|
|
"constraints": [
|
|
models.CheckConstraint(
|
|
condition=models.Q(("id", 1)), name="single_global_note"
|
|
)
|
|
],
|
|
},
|
|
),
|
|
]
|