Changes between Initial Version and Version 3 of Ticket #14626
- Timestamp:
- Nov 5, 2010, 1:00:08 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14626 – Description
initial v3 2 2 Python 2.4.3 3 3 Oracle 11 4 4 {{{ 5 5 class scott_test1(models.Model): 6 6 graphic_id = models.IntegerField() … … 15 15 16 16 foo.save() 17 17 }}} 18 18 According to the docs at http://docs.djangoproject.com/en/dev/ref/models/fields/#datefield, foo.df should be a datetime.date object, not datetime.datetime: 19 19 {{{ 20 20 In [7]: foo.df 21 21 Out[7]: datetime.datetime(2010, 11, 5, 10, 13, 3, 744903) … … 27 27 Out[9]: datetime.time(10, 13, 3, 745130) 28 28 29 }}}