I've been playing with the inspectdb functionality against a number of
databases and ran across a missing conversion this morning.

While django.core.db.backends.mysql has provisions for DATE, TIME and
DATETIME, it was missing TIMESTAMP which can be mapped to
typecasts.typecast_timestamp.

Mysql timestamp fields are essentially equivalent to unix
seconds-since-the-epoch and suffer the same limitations ( must fall
between 1970 and 2037 ) so there may be issues depending an what you
plan on using them for in your django apps.

:wq


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to