So I am trying to write data with either millisecond or nanosecond precision and neither works. If I try to generate an integer that represents millisecond precision (since epoch): ``` timestamp = (Time.now.to_f * 1000).to_i ``` I get the following error: ``` time outside range 1677-09-21 00:12:43.145224192 +0000 UTC - 2262-04-11 23:47:16.854775807 +0000 UTC ``` I am trying to do what the tests show but that doesn't seem to be working