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 | d4ea0d985d1be471132b1e8f80e7c43bff87d952 (patch) | |
tree | 957fdbbbbe45828100f7b17edee5f2dccefe6fc3 | |
parent | 4d8821fff11d8c1b148dc88b097c099e30481182 (diff) | |
download | Ishtar-d4ea0d985d1be471132b1e8f80e7c43bff87d952.tar.bz2 Ishtar-d4ea0d985d1be471132b1e8f80e7c43bff87d952.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(): |