* Introduce project_personas table with foreign keys to projects and agent_personas * Add project_skills table with foreign key to projects and agent_skills * Include override boolean field in agent_persona_skills and project_skills * Update schema and migration files to reflect new tables and fields * Enhance CORS handling to reflect request origin
This commit is contained in:
@@ -29,6 +29,7 @@ Table project_skills {
|
||||
id bigserial [pk]
|
||||
project_id bigint [not null, ref: > projects.id]
|
||||
skill_id bigint [not null, ref: > agent_skills.id]
|
||||
override boolean [not null, default: false]
|
||||
created_at timestamptz [not null, default: `now()`]
|
||||
|
||||
indexes {
|
||||
|
||||
Reference in New Issue
Block a user