-
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.
- Loading branch information
Michael
committed
Nov 5, 2021
1 parent
ffe9716
commit e759697
Showing
4 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
django_workflow_system/migrations/0010_auto_20211105_0940.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,37 @@ | ||
# Generated by Django 3.2.9 on 2021-11-05 14:40 | ||
|
||
from django.conf import settings | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import django.utils.timezone | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||
('django_workflow_system', '0009_update_user_input_types'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='workflowcollectionengagement', | ||
name='finished', | ||
field=models.DateTimeField(blank=True, help_text='When the user finished the engagement.', null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowcollectionengagement', | ||
name='started', | ||
field=models.DateTimeField(default=django.utils.timezone.now, help_text='When the user started the engagment.'), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowcollectionengagement', | ||
name='user', | ||
field=models.ForeignKey(help_text='The user to whom the engagement belongs.', on_delete=django.db.models.deletion.PROTECT, to=settings.AUTH_USER_MODEL), | ||
), | ||
migrations.AlterField( | ||
model_name='workflowcollectionengagement', | ||
name='workflow_collection', | ||
field=models.ForeignKey(help_text='The collection which the engagement records data for.', on_delete=django.db.models.deletion.PROTECT, to='django_workflow_system.workflowcollection'), | ||
), | ||
] |
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
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