Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!1261
Manage holidays
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Manage holidays
manage-holidays
into
master
Overview
15
Commits
29
Pipelines
19
Changes
1
Merged
Julian
requested to merge
manage-holidays
into
master
1 year ago
Overview
2
Commits
29
Pipelines
19
Changes
1
Expand
Manage holidays using the inline crud list
0
0
Merge request reports
Viewing commit
062cb7a5
Prev
Next
Show latest version
1 file
+
22
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
062cb7a5
Create managed_by_app_label migration for calendar events
· 062cb7a5
Julian
authored
1 year ago
aleksis/core/migrations/0057_calendar_event_add_managed_by_app_label.py
0 → 100644
+
22
−
0
Options
# 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