Model A has 50 fields. Model B has 20 of model A's 50 fields. I am
trying to make a nightly cron job that will make a queryset of model A
based on a filter and copy that information into model B. I also don't
want it to copy the information if it already exists in model B. Does
anyone know a good way to do this?

I thought I might be able to make an empty instance of model B and
somehow get the field names, but that isn't working. If I could do
something like that, I could iterate through the values of model A's
queryset and compare them to model B. If one of the fields match I
could copy the data in and save the instance.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to