8 lines
311 B
TypeScript
8 lines
311 B
TypeScript
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(),
|
||
|
|
});
|