changeset 77582defbb9b in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset&node=77582defbb9b
description:
Use Timestamp for timestamp on ir.cache
issue11290
review390181003
diffstat:
trytond/ir/cache.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (9 lines):
diff -r e436b206f484 -r 77582defbb9b trytond/ir/cache.py
--- a/trytond/ir/cache.py Wed Mar 09 00:57:17 2022 +0100
+++ b/trytond/ir/cache.py Sat Mar 19 15:04:09 2022 +0100
@@ -7,4 +7,4 @@
"Cache"
__name__ = 'ir.cache'
name = fields.Char('Name', required=True)
- timestamp = fields.DateTime('Timestamp')
+ timestamp = fields.Timestamp("Timestamp")