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
82 lines
2.5 KiB
JavaScript
82 lines
2.5 KiB
JavaScript
/**
|
|
* Remove ON DELETE SET NULL foreign keys that are incompatible with Citus distribution.
|
|
*
|
|
* These FKs are problematic because:
|
|
* 1. ON DELETE SET NULL on composite keys tries to set ALL columns to NULL
|
|
* 2. The tenant column has a NOT NULL constraint
|
|
* 3. Citus doesn't support certain FK constraints on distributed tables
|
|
*
|
|
* The deletion logic is now handled in application code.
|
|
*/
|
|
|
|
const FK_CONSTRAINTS = [
|
|
{
|
|
table: 'client_contract_lines',
|
|
constraint: 'client_contract_lines_client_contract_fk',
|
|
references: 'client_contracts(tenant, client_contract_id)',
|
|
columns: '(tenant, client_contract_id)',
|
|
},
|
|
{
|
|
table: 'time_entries',
|
|
constraint: 'time_entries_client_contract_line_fk',
|
|
references: 'client_contract_lines(tenant, client_contract_line_id)',
|
|
columns: '(tenant, contract_line_id)',
|
|
},
|
|
];
|
|
|
|
async function dropConstraintIfExists(knex, table, constraint) {
|
|
const exists = await knex.raw(`
|
|
SELECT 1 FROM information_schema.table_constraints
|
|
WHERE table_name = ?
|
|
AND constraint_type = 'FOREIGN KEY'
|
|
AND constraint_name = ?
|
|
AND table_schema = current_schema()
|
|
`, [table, constraint]);
|
|
|
|
if (exists.rows.length > 0) {
|
|
await knex.raw(`ALTER TABLE ?? DROP CONSTRAINT ??`, [table, constraint]);
|
|
console.log(` ✓ Dropped ${constraint}`);
|
|
return true;
|
|
}
|
|
console.log(` ⚠ Constraint ${constraint} does not exist, skipping`);
|
|
return false;
|
|
}
|
|
|
|
exports.up = async function up(knex) {
|
|
console.log('Removing ON DELETE SET NULL foreign keys (incompatible with Citus)...');
|
|
|
|
for (const fk of FK_CONSTRAINTS) {
|
|
await dropConstraintIfExists(knex, fk.table, fk.constraint);
|
|
}
|
|
};
|
|
|
|
exports.down = async function down(knex) {
|
|
// Re-add the FK constraints (not recommended for Citus environments)
|
|
console.log('Re-adding ON DELETE SET NULL foreign keys...');
|
|
|
|
for (const fk of FK_CONSTRAINTS) {
|
|
const exists = await knex.raw(`
|
|
SELECT 1 FROM information_schema.table_constraints
|
|
WHERE table_name = ?
|
|
AND constraint_type = 'FOREIGN KEY'
|
|
AND constraint_name = ?
|
|
AND table_schema = current_schema()
|
|
`, [fk.table, fk.constraint]);
|
|
|
|
if (exists.rows.length === 0) {
|
|
try {
|
|
await knex.raw(`
|
|
ALTER TABLE ??
|
|
ADD CONSTRAINT ??
|
|
FOREIGN KEY ${fk.columns}
|
|
REFERENCES ${fk.references}
|
|
ON DELETE SET NULL
|
|
`, [fk.table, fk.constraint]);
|
|
console.log(` ✓ Added ${fk.constraint}`);
|
|
} catch (error) {
|
|
console.log(` ⚠ Could not add ${fk.constraint}: ${error.message}`);
|
|
}
|
|
}
|
|
}
|
|
};
|