Skip to content

Instantly share code, notes, and snippets.

@atroche
Created October 18, 2011 13:39
Show Gist options
  • Save atroche/1295447 to your computer and use it in GitHub Desktop.
Save atroche/1295447 to your computer and use it in GitHub Desktop.
from streetlife.frontend.mail.models import UserMail, Mail
from streetlife.frontend.user.models import User
for um in UserMail.objects():
um.mail_updated_at = um.mail.updated_at = um.mail.messages[-1].posted_at
um.save()
super(Mail, um.mail).save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment