Files
zeavis-edu/apps/api/src/db/schema.ts
T

8 lines
311 B
TypeScript
Raw Normal View History

2026-05-22 12:25:41 +00:00
import { pgTable, timestamp, uuid, varchar } from 'drizzle-orm/pg-core';
export const appEvents = pgTable('app_events', {
id: uuid('id').primaryKey().defaultRandom(),
name: varchar('name', { length: 120 }).notNull(),
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
});