feat(db): add project personas and skills tables
CI / build-and-test (push) Failing after 1m52s

* 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:
2026-07-04 23:45:51 +02:00
parent 1adf50e3db
commit c179e014ad
69 changed files with 1329 additions and 184 deletions
+2 -1
View File
@@ -42,7 +42,8 @@ func New(opts ...DialectOption) *Dialect {
feature.AutoIncrement |
feature.CompositeIn |
feature.FKDefaultOnAction |
feature.DeleteReturning
feature.DeleteReturning |
feature.CreateIndexIfNotExists
for _, opt := range opts {
opt(d)