2025-10-28T19:29:44.000Z (Created by default constraint)

2025-10-28T19:29:44.000Z (Created by using NOW in insert)

2025-10-28T19:29:44.000Z (Created by using `SELECT NOW` in query. This one actually makes sense because it is being parsed as a string and doesn't include any time info)

2025-10-28T19:29:44.000Z (Created by using `SELECT NOW` in query converted with JavaScript. By default the timestamps from LibSQL seem to be dates that are in UTC time by not formatted with the timezone. By adding the 'z' to the timestamp string, it now gives the propper Date in JavaScript)

2025-10-28T19:29:44.000Z (Created using `SELECT DATETIME(NOW, 'localtime')`. This works because it is being stored and parsed in local time of the server / runtime)

2025-10-28T19:29:44.422Z (JavaScript Runtime new Date())