-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: EditorialBoardLockUser creation date
- Loading branch information
1 parent
6cddd67
commit 5bf3552
Showing
4 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
21 changes: 21 additions & 0 deletions
21
src/cms/contexts/migrations/0018_editorialboardlockuser_created.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,21 @@ | ||
# Generated by Django 4.2.9 on 2024-05-08 12:15 | ||
|
||
from django.db import migrations, models | ||
import django.utils.timezone | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("cmscontexts", "0017_webpath_access"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="editorialboardlockuser", | ||
name="created", | ||
field=models.DateTimeField( | ||
auto_now_add=True, default=django.utils.timezone.now | ||
), | ||
preserve_default=False, | ||
), | ||
] |
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
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