From 118ff155c6441a058f9971c7f7dd77e2407c9bd5 Mon Sep 17 00:00:00 2001 From: Andrew Melton Date: Tue, 2 Apr 2013 16:30:03 -0400 Subject: [PATCH] Using audit_period instead of raw__when in past launch migration --- migrations/009_populate_past_launches.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migrations/009_populate_past_launches.py b/migrations/009_populate_past_launches.py index 6c17c54..5c28e63 100644 --- a/migrations/009_populate_past_launches.py +++ b/migrations/009_populate_past_launches.py @@ -18,8 +18,8 @@ if __name__ != '__main__': def add_past_exists(start, end): exists = models.InstanceExists.objects.select_related()\ - .filter(raw__when__gte=start, - raw__when__lte=end) + .filter(audit_period_beginning=start, + audit_period_ending=end) i = 0 for exist in exists: i += 1