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
44 lines
1.9 KiB
JavaScript
44 lines
1.9 KiB
JavaScript
/**
|
|
|
|
* The triggers that were previously on these tables will be dropped and cannot be recreated.
|
|
*/
|
|
exports.up = async function(knex) {
|
|
// Step 1: Drop foreign key constraints that reference the tables we're converting
|
|
await knex.raw(`
|
|
-- Drop FKs to system_workflow_registrations
|
|
ALTER TABLE system_workflow_registration_versions
|
|
DROP CONSTRAINT IF EXISTS system_workflow_registration_versions_registration_id_foreign;
|
|
|
|
ALTER TABLE system_workflow_event_attachments
|
|
DROP CONSTRAINT IF EXISTS system_workflow_event_attachments_workflow_id_foreign;
|
|
`);
|
|
|
|
// Step 2: Drop triggers on the tables we're converting
|
|
await knex.raw(`
|
|
-- Drop triggers on tenant_external_entity_mappings
|
|
DROP TRIGGER IF EXISTS set_timestamp ON tenant_external_entity_mappings;
|
|
|
|
-- Drop triggers on system tables
|
|
DROP TRIGGER IF EXISTS set_system_workflow_registrations_updated_at ON system_workflow_registrations;
|
|
DROP TRIGGER IF EXISTS set_system_workflow_registration_versions_updated_at ON system_workflow_registration_versions;
|
|
DROP TRIGGER IF EXISTS set_system_workflow_event_attachments_updated_at ON system_workflow_event_attachments;
|
|
`);
|
|
|
|
// Step 3: Recreate foreign key constraints
|
|
await knex.raw(`
|
|
-- Recreate FKs to system_workflow_registrations
|
|
ALTER TABLE system_workflow_registration_versions
|
|
ADD CONSTRAINT system_workflow_registration_versions_registration_id_foreign
|
|
FOREIGN KEY (registration_id) REFERENCES system_workflow_registrations(registration_id) ON DELETE CASCADE;
|
|
|
|
ALTER TABLE system_workflow_event_attachments
|
|
ADD CONSTRAINT system_workflow_event_attachments_workflow_id_foreign
|
|
FOREIGN KEY (workflow_id) REFERENCES system_workflow_registrations(registration_id) ON DELETE CASCADE;
|
|
`);
|
|
|
|
};
|
|
|
|
exports.down = async function(knex) {
|
|
console.log('Warning: Converting back from Citus distributed/reference tables is not supported in this migration.');
|
|
};
|