Comprehensive guidance for making changes to the data model (database schema, validation, types, and data access layer) in the Inkeep Agent Framework.
| Database | Config File | Schema File | Purpose |
| Manage (Doltgres) | drizzle.manage.config.ts | src/db/manage/manage-schema.ts | Versioned config: projects, agents, tools, triggers, evaluators | | Runtime (Postgres) | drizzle.run.config.ts | src/db/runtime/runtime-schema.ts | Transactional data: conversations, messages, tasks, API keys |
Guide for making changes to the database schema, validation, types, and data access layer. Use when adding tables, columns, relations, or modifying the data model. Triggers on: add table, add column, modify schema, database change, data model, new entity, schema migration. Source: inkeep/agents.