I use an api that returns timestamps in this format:
var options = {
:year => 2025,
:month => 4,
:day => 10,
:hour => 18,
:minute => 21,
:second => 47
};
var timestamp = Gregorian.moment(options);
But all this would almost double the datafield.... so the best I could come up with is to store the timestamps as a string,
and compare them as a string.