-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Propagate modify time from object to containers
Modifications propagate from: * data -> entity -> collection * annotation value -> entity * relation -> collection
- Loading branch information
1 parent
cbbad35
commit 3ccd69b
Showing
10 changed files
with
239 additions
and
16 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
53 changes: 53 additions & 0 deletions
53
resolwe/flow/migrations/0019_alter_annotationpreset_modified_and_more.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,53 @@ | ||
# Generated by Django 4.2.7 on 2023-12-06 11:59 | ||
|
||
from django.db import migrations | ||
import resolwe.flow.models.base | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("flow", "0018_add_annotationvalue_default_order"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="annotationpreset", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="collection", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="data", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="descriptorschema", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="entity", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="process", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="relation", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
migrations.AlterField( | ||
model_name="storage", | ||
name="modified", | ||
field=resolwe.flow.models.base.ModifiedField(auto_now=True, db_index=True), | ||
), | ||
] |
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
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
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
Oops, something went wrong.