Skip to content
Snippets Groups Projects

Manage holidays

Merged Julian requested to merge manage-holidays into master
1 file
+ 22
0
Compare changes
  • Side-by-side
  • Inline
# Generated by Django 4.1.9 on 2023-07-05 13:04
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0056_alter_activity_managers_and_more"),
]
operations = [
migrations.AddField(
model_name="calendarevent",
name="managed_by_app_label",
field=models.CharField(
blank=True,
editable=False,
max_length=255,
verbose_name="App label of app responsible for managing this instance",
),
),
]
Loading