-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
Description
Describe the feature
Atm when we define a schema e.g:
const users = dSqlite.sqliteTable("users_schema", {
id: dSqlite.numeric("id"),
name: dSqlite.text("name"),
email: dSqlite.text("email"),
joinDate: dSqlite.integer({ mode: "timestamp" }),
});when we select from it:
const res = await drizzleDb.select().from(users).all();The date is returned as an integer timestamp, but we want a Date object, as used by the default DrizzleORM implementation.
Additional information
- Would you be willing to help implement this feature?