Skip to content

Instantly share code, notes, and snippets.

@camsom
Created September 9, 2014 18:29
Show Gist options
  • Save camsom/54996e6c5905165cc0bf to your computer and use it in GitHub Desktop.
Save camsom/54996e6c5905165cc0bf to your computer and use it in GitHub Desktop.
base_task = Task.objects.create(institution=None, **bullshit_data)
for institution in Institution.objects.all():
new_task = base_task
new_task.pk = None
new_task.institution = institution
new_task.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment