-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ [#51] Track when status was changed on the vernietigingslijst
- Loading branch information
1 parent
6cd2b49
commit abbe10e
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,4 +125,5 @@ class Meta: | |
"items", | ||
"status", | ||
"created", | ||
"status_changed", | ||
) |
23 changes: 23 additions & 0 deletions
23
backend/src/openarchiefbeheer/destruction/migrations/0003_destructionlist_status_changed.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.11 on 2024-05-23 09:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("destruction", "0002_destructionlistassignee"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="destructionlist", | ||
name="status_changed", | ||
field=models.DateTimeField( | ||
blank=True, | ||
help_text="Tracks when the status was changed.", | ||
null=True, | ||
verbose_name="status changed", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters