https://bugs.gpodder.org/show_bug.cgi?id=713
Stefan Kögl <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED CC| |[email protected] Resolution| |FIXED --- Comment #1 from Stefan Kögl <[email protected]> 2009-12-09 08:34:01 GMT --- I've set auth_user.date_joined = 0 for all migrated accounts with the following commands. select date_joined, count(*) c from auth_user group by date_joined order by c desc limit 5; +---------------------+------+ | date_joined | c | +---------------------+------+ | 2009-11-21 23:54:12 | 3504 | | 2009-11-22 16:00:26 | 1 | | 2009-11-23 14:16:42 | 1 | | 2009-11-24 08:58:51 | 1 | | 2009-11-25 21:11:22 | 1 | +---------------------+------+ update auth_user set date_joined = 0 where date_joined = '2009-11-21 23:54:12'; I've added this special case to the database documentation. -- Configure bugmail: https://bugs.gpodder.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. _______________________________________________ gPodder-Bugs mailing list [email protected] https://lists.berlios.de/mailman/listinfo/gpodder-bugs
