SQLite: timestamp vs timestamp_ms modes
The SQLite column types docs mention there's multiple modes for integers.
What's the difference between timestamp_ms and timestamp modes?
My assumption is the following:
What's the difference between timestamp_ms and timestamp modes?
My assumption is the following:
timestamp_ms: Stores the timestamp including the milliseconds. Same precision as Date.now(). Equivalent to TIMESTAMP in MySQL.timestamp: Stores the date only. Same precision as 2023-08-09. Equivalent to DATE in MySQL.
GitHub
The SQLite column types docs mention there's multiple modes for integers. What's the difference between timestamp_ms and timestamp modes? import { integer, sqliteTable } from "drizzle-...