/** * Talker Database Schema * * Table names are single-sourced here and consumed by both `migrate.ts` * (DDL) and `libsql-store.ts` (queries), so the two cannot drift the way a * table name copy-pasted into each SQL string eventually does. */ export declare const TALKER_SESSIONS_TABLE = "talker_sessions"; export declare const TALKER_MESSAGES_TABLE = "talker_messages"; export declare const TALKER_MESSAGE_STATUS_TABLE = "talker_message_status"; /** Safe to run multiple times (every statement is IF NOT EXISTS). */ export declare const SCHEMA_STATEMENTS: string[];