import { db } from "./index.ts"; import { categories } from "./schema.ts"; export function seedDefaults() { const existing = db.select().from(categories).all(); if (existing.length === 0) { db.insert(categories) .values({ name: "Uncategorized", emoji: "\u{1F4E6}", }) .run(); } }