forked from HumanSignal/label-studio
-
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.
fix: DEV-1781: Consistency with data exported to Target Storage (Huma…
…nSignal#2369) * fix: DEV-1865: Export annotation in rqworker job (HumanSignal#2090) * feat: DEV-1865: Sync on target storage creation (HumanSignal#2114)
- Loading branch information
1 parent
d8d6a05
commit 9303c8b
Showing
7 changed files
with
81 additions
and
18 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
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
38 changes: 38 additions & 0 deletions
38
label_studio/io_storages/migrations/0009_auto_20220310_0922.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,38 @@ | ||
# Generated by Django 3.1.14 on 2022-03-10 09:22 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('io_storages', '0008_auto_20211129_1132'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='azureblobexportstoragelink', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True, help_text='Update time', verbose_name='updated at'), | ||
), | ||
migrations.AddField( | ||
model_name='gcsexportstoragelink', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True, help_text='Update time', verbose_name='updated at'), | ||
), | ||
migrations.AddField( | ||
model_name='localfilesexportstoragelink', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True, help_text='Update time', verbose_name='updated at'), | ||
), | ||
migrations.AddField( | ||
model_name='redisexportstoragelink', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True, help_text='Update time', verbose_name='updated at'), | ||
), | ||
migrations.AddField( | ||
model_name='s3exportstoragelink', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True, help_text='Update time', verbose_name='updated at'), | ||
), | ||
] |
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