- πΊπΈUnited States joshuautley
It took me quite some time, but after reviewing entries within the database the format for us must be Epoch time.
U Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT) See also time()
As discussed here > https://www.php.net/manual/en/datetime.format.php
- πΊπΈUnited States redeight
The date and enddate are stored as INT after installation, but duration is stored as bigint. Is there any reason we aren't storing the start and end as bigint?
- π¨π¦Canada mandclu
I think you should double-check your database. value and end_value should be bigint, and duration mediumint.
- πΊπΈUnited States redeight
My apologies. Running the update after installing 4.1 was what I was missing. It's now showing bigint. Thanks!