diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-29 23:36:17 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-29 23:36:17 +0100 |
commit | cdea787942a9f6ee852f46fc187bcb280e30ed3f (patch) | |
tree | 957fdbbbbe45828100f7b17edee5f2dccefe6fc3 | |
parent | 029b74dfa13919222138734b41265642e30494ab (diff) | |
download | Ishtar-cdea787942a9f6ee852f46fc187bcb280e30ed3f.tar.bz2 Ishtar-cdea787942a9f6ee852f46fc187bcb280e30ed3f.zip |
Remove limitation to restore find data script
-rw-r--r-- | scripts/restore_find_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/restore_find_data.py b/scripts/restore_find_data.py index 3dbbc4518..090647162 100644 --- a/scripts/restore_find_data.py +++ b/scripts/restore_find_data.py @@ -7,7 +7,7 @@ from ishtar_common.utils import update_data from archaeological_finds.models import Find -for item in Find.objects.all()[0:50]: +for item in Find.objects.all(): data = item.data for h in item.history.order_by('-history_modifier_id', '-history_date', '-history_id').all(): |