© 2026 Hedgehog Software, LLC
export const blogMetadata = pgTable('blog_metadata', { id: varchar('id').primaryKey(), view: integer('view').default(0), });
db.select().from(blogMetadata).where(eq(blogMetadata.id, id))
{ id: string; view: number | null }
view