36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import {
|
|
integer,
|
|
jsonb,
|
|
pgTable,
|
|
text,
|
|
timestamp,
|
|
uniqueIndex,
|
|
uuid,
|
|
} from "drizzle-orm/pg-core";
|
|
import { createSelectSchema } from "drizzle-zod";
|
|
|
|
export const apiHits = pgTable(
|
|
"apiHits",
|
|
{
|
|
apiHit_id: uuid("apiHit_id").defaultRandom().primaryKey(),
|
|
ip: text("ip"),
|
|
endpoint: text("endpoint"),
|
|
action: text("action"),
|
|
lastBody: jsonb("lastBody"),
|
|
stats: integer("stats").default(1),
|
|
add_date: timestamp().defaultNow(),
|
|
upd_date: timestamp().defaultNow(),
|
|
},
|
|
(table) => [
|
|
// uniqueIndex('emailUniqueIndex').on(sql`lower(${table.email})`),
|
|
uniqueIndex("endpoint").on(table.endpoint, table.ip),
|
|
]
|
|
);
|
|
|
|
// Schema for inserting a user - can be used to validate API requests
|
|
// export const insertRolesSchema = createInsertSchema(roles, {
|
|
// name: z.string().min(3, {message: "Role name must be more than 3 letters"}),
|
|
// });
|
|
// Schema for selecting a Expenses - can be used to validate API responses
|
|
export const selectRolesSchema = createSelectSchema(apiHits);
|