-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete Translation.source_last_updated_at
This field isn't used, or updated. It was accidentally left over from a previous refactoring. Users should use ``Translation.source.last_updated_at`` instead.
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
wagtail_localize/migrations/0014_remove_translation_source_last_updated_at.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,17 @@ | ||
# Generated by Django 3.2.6 on 2021-09-14 08:53 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('wagtail_localize', '0013_translationsource_schema_version'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='translation', | ||
name='source_last_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