Current:
Last updated timestamp is not written in usual database format:
2020-01-27 12:41:03
YYYY-MM-DD hh:mm:ss
Expected:
Convert last updated timestamp into ISO 8601 format, i.e.
2020-01-27T12:41:03+01:00
YYYY-MM-DDThh:mm:ss+01:00 (this is in UTC+1, what is EU Winter time)
See documentation: https://en.wikipedia.org/wiki/ISO_8601
Where to implement the change: "Morph script" - script that parses TJV register and persists it to db https://morph.io/SelectSoft/blue_gene
Current: Last updated timestamp is not written in usual database format: 2020-01-27 12:41:03 YYYY-MM-DD hh:mm:ss
Expected: Convert last updated timestamp into ISO 8601 format, i.e. 2020-01-27T12:41:03+01:00 YYYY-MM-DDThh:mm:ss+01:00 (this is in UTC+1, what is EU Winter time) See documentation: https://en.wikipedia.org/wiki/ISO_8601
Convert last_updated to ISO 8601
See Expected section for more details.