7f571d36ea
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import { integer } from "drizzle-orm/sqlite-core"
|
|
|
|
export const Timestamps = {
|
|
time_created: integer()
|
|
.notNull()
|
|
.$default(() => Date.now()),
|
|
time_updated: integer()
|
|
.notNull()
|
|
.$onUpdate(() => Date.now()),
|
|
}
|