import { sqliteTable, text } from 'drizzle-orm/sqlite-core'; import type { ProseElement } from 'tsprose'; export const topics = sqliteTable('topics', { fullId: text().primaryKey(), article: text({ mode: 'json' }).$type(), summary: text({ mode: 'json' }).$type(), practice: text({ mode: 'json' }).$type(), });