changeset 6a4afdc7c849 in trytond:5.0
details: https://hg.tryton.org/trytond?cmd=changeset&node=6a4afdc7c849
description:
Use Timestamp for timestamp on ir.cache
issue11290
review390181003
(grafted from 77582defbb9be076986d7b8b028d12d9f2812c4a)
diffstat:
trytond/ir/cache.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (9 lines):
diff -r a9e4e5a328c1 -r 6a4afdc7c849 trytond/ir/cache.py
--- a/trytond/ir/cache.py Sun Mar 06 18:02:00 2022 +0100
+++ b/trytond/ir/cache.py Sat Mar 19 15:04:09 2022 +0100
@@ -11,4 +11,4 @@
"Cache"
__name__ = 'ir.cache'
name = fields.Char('Name', required=True)
- timestamp = fields.DateTime('Timestamp')
+ timestamp = fields.Timestamp("Timestamp")