the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 1241cd4e999bb3f48dca4cab7bcff14fe6f5d6ad 15 lines 549 B view raw
1import { type InferInsertModel, type InferSelectModel, sql } from "drizzle-orm"; 2import { pgTable, text, timestamp } from "drizzle-orm/pg-core"; 3 4const secrets = pgTable("secrets", { 5 id: text("id").primaryKey().default(sql`secret_id()`), 6 name: text("name").notNull(), 7 value: text("value").notNull(), 8 redacted: text("redacted"), 9 createdAt: timestamp("created_at").defaultNow().notNull(), 10}); 11 12export type SelectSecret = InferSelectModel<typeof secrets>; 13export type InsertSecret = InferInsertModel<typeof secrets>; 14 15export default secrets;