mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
9 lines
368 B
TypeScript
9 lines
368 B
TypeScript
import { pgTable, integer, varchar } from "drizzle-orm/pg-core";
|
|
import { sql } from "drizzle-orm";
|
|
import { timestamps } from "./columns.helpers";
|
|
|
|
export const accounts = pgTable("base_table", {
|
|
id: integer().primaryKey().generatedAlwaysAsIdentity({ name: "base_id_seq", startWith: 1, increment: 1, minValue: 1, maxValue: 2147483647, cache: 1 }),
|
|
|
|
...timestamps
|
|
}) |