
The above is one of my tables in admin interface in the descending order of id(recent record is at top). And here is the way I used to create the model objects and save. 
notification = Notification(from_user=from_user, to_user=to_user,
                            created_date=datetime.now())
notification.save()
All the inserts to this table Notification are done only in the various post_save signal handlers. Will it cause any inconsistencies like these?
Using TIME_ZONE = 'GMT' in django 1.3.2. I could try with auto_now_add=True option in the model but before that just want to know why this is happening.
 
     
     
     
     
    