feat(migration): Add hidden field to Activity model

Introduces a boolean field 'hidden' to the Activity model to
allow activities to be marked as hidden. This can be utilized
for filtering visible activities without deleting them from
the database.
This commit is contained in:
Kumi 2024-11-18 06:35:54 +01:00
parent cfc8f6eefc
commit 4de1c966d6
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -0,0 +1,18 @@
# Generated by Django 5.0.6 on 2024-11-18 05:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("mood", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="activity",
name="hidden",
field=models.BooleanField(default=False),
),
]