Database Handler Instructions 1. Creating a New Table 1. Draft : Create the definition in . 2. Columns : Add ID (UUID), timestamps, and data columns. - Mandatory : Use Zod schema for any JSONB columns. 3. Relations : Define and Foreign Keys. 4. Verification : Ask the user: "Is this structure correct? Are there any missing relations?" 5. Migration : - DO NOT generate migration files (e.g., ). - DO use to sync schema changes directly to the database. 2. Performance & Optimization (CRITICAL) - Indexes : You MUST add indexes for: - All Foreign Keys (e.g., , ). - Columns frequently used in clauses…