Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
45 lines
1.9 KiB
JavaScript
45 lines
1.9 KiB
JavaScript
exports.up = async function (knex) {
|
|
// Earlier migration (20250908144222) attempted the same rename but skipped any
|
|
// tenant where a singular 'document' (client=true) row already existed, leaving
|
|
// tenants whose only client document permission rows came from
|
|
// ee/server/seeds/onboarding/02_permissions.cjs ('documents', plural) untouched.
|
|
//
|
|
// role_permissions references permissions by permission_id, so renaming the
|
|
// resource column re-targets every existing assignment in one shot.
|
|
//
|
|
// Verified before writing this migration:
|
|
// - 0 tenants have BOTH 'document' and 'documents' client=true rows
|
|
// (no PK/uniqueness collisions; permissions PK is (tenant, permission_id))
|
|
// - 76 role_permissions rows currently reference plural rows
|
|
// - No code path checks resource='documents' anywhere
|
|
|
|
const tenants = await knex('tenants').select('tenant');
|
|
|
|
let totalUpdated = 0;
|
|
for (const { tenant } of tenants) {
|
|
const updated = await knex('permissions')
|
|
.where({ tenant, resource: 'documents', client: true })
|
|
.update({ resource: 'document' });
|
|
totalUpdated += updated;
|
|
}
|
|
|
|
console.log(`Renamed ${totalUpdated} client permission rows from 'documents' to 'document'`);
|
|
};
|
|
|
|
exports.down = async function (knex) {
|
|
// Best-effort revert: rename back. Cannot perfectly distinguish rows that
|
|
// were originally 'document' from those renamed by the up migration, so
|
|
// this only reverts when no singular twin would be left behind.
|
|
const tenants = await knex('tenants').select('tenant');
|
|
|
|
let totalReverted = 0;
|
|
for (const { tenant } of tenants) {
|
|
const reverted = await knex('permissions')
|
|
.where({ tenant, resource: 'document', client: true })
|
|
.update({ resource: 'documents' });
|
|
totalReverted += reverted;
|
|
}
|
|
|
|
console.log(`Reverted ${totalReverted} client permission rows from 'document' to 'documents'`);
|
|
};
|