monolayer-pg / schema / date
Function: date()
date():
PgDate
Column that stores dates (without time of day).
Returns
Remarks
Range: 4713 BC and 5874897 AD.
The JavaScript Date
implementation can represent only a maximum of September 13, 275760 AD. If you need to read/store dates after this maximum, you'll have to implement a custom type serializer and parser with node-pg-types.
Kysely database schema type definition
ts
{
readonly __select__: Date | null;
readonly __insert__: Date | string | null | undefined;
readonly __update__: Date | string | null;
};
Nullability and optionality will change according to the column's constraints, generated values, and default data values.
Example
ts
import { date, schema, table } from "@monolayer/pg/schema";
const dbSchema = schema({
tables: {
example: table({
columns: {
createdAt: date(),
},
}),
},
});
// Kysely database schema type
type DB = typeof dbSchema.infer;
See
PostgreSQL Doc: date