fix: build UI assets in CI
CI / build-and-test (pull_request) Successful in 1m20s
CI / build-and-test (push) Successful in 1m23s

This commit is contained in:
2026-07-15 05:14:09 +02:00
parent 4b3f0b1b55
commit e3a4a3c5c7
6 changed files with 552 additions and 17 deletions
+2
View File
@@ -9,6 +9,8 @@ alter table plans add column if not exists tenant_key text;
alter table chat_histories add column if not exists tenant_key text;
-- Project names are now unique inside a tenant rather than globally.
alter table projects drop constraint if exists ukey_projects_name;
alter table projects drop constraint if exists projects_name_key;
drop index if exists projects_name_key;
create unique index if not exists projects_tenant_key_name_idx
on projects (coalesce(tenant_key, ''), name);