mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
import { timestamp } from "drizzle-orm/pg-core";
|
|
|
|
// columns.helpers.ts
|
|
export const timestamps = {
|
|
updated_at: timestamp().defaultNow().notNull(),
|
|
created_at: timestamp().defaultNow().notNull(),
|
|
deleted_at: timestamp(),
|
|
}
|
|
|
|
export const timestampsAllowNulls = {
|
|
updated_at: timestamp().defaultNow(),
|
|
created_at: timestamp().defaultNow(),
|
|
deleted_at: timestamp(),
|
|
} |