import { pgTable, text, timestamp } from 'drizzle-orm/pg-core'; export const sessions = pgTable('sessions', { id: text('id').primaryKey(), did: text('did').notNull(), createdAt: timestamp('created_at', { withTimezone: true }).notNull(), expiresAt: timestamp('expires_at', { withTimezone: true }).notNull(), });