Kumi
4de1c966d6
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.
18 lines
375 B
Python
18 lines
375 B
Python
# 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),
|
|
),
|
|
]
|