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
108 lines
3.0 KiB
JavaScript
108 lines
3.0 KiB
JavaScript
const ensureSequentialMode = async (knex) => {
|
|
await knex.raw(`
|
|
DO $$
|
|
BEGIN
|
|
IF EXISTS (
|
|
SELECT 1 FROM pg_extension WHERE extname = 'citus'
|
|
) THEN
|
|
EXECUTE 'SET citus.multi_shard_modify_mode TO ''sequential''';
|
|
END IF;
|
|
END $$;
|
|
`);
|
|
};
|
|
|
|
const hasColumn = async (knex, table, column) => {
|
|
try {
|
|
return await knex.schema.hasColumn(table, column);
|
|
} catch (error) {
|
|
console.warn(`Unable to check column ${column} on ${table}:`, error);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
exports.up = async function up(knex) {
|
|
await ensureSequentialMode(knex);
|
|
|
|
const tableName = 'client_contracts';
|
|
const tableExists = await knex.schema.hasTable(tableName);
|
|
if (!tableExists) {
|
|
console.log('⊘ Skipping client contract PO migration: client_contracts table not found');
|
|
return;
|
|
}
|
|
|
|
const [poNumberExists, poRequiredExists] = await Promise.all([
|
|
hasColumn(knex, tableName, 'po_number'),
|
|
hasColumn(knex, tableName, 'po_required'),
|
|
]);
|
|
|
|
if (!poNumberExists || !poRequiredExists) {
|
|
await knex.schema.alterTable(tableName, (table) => {
|
|
if (!poNumberExists) {
|
|
table.text('po_number');
|
|
}
|
|
if (!poRequiredExists) {
|
|
table.boolean('po_required').notNullable().defaultTo(false);
|
|
}
|
|
});
|
|
|
|
if (!poNumberExists) {
|
|
const indexName = `idx_${tableName}_po_number`;
|
|
await knex.raw(`
|
|
CREATE INDEX IF NOT EXISTS ${indexName}
|
|
ON ${tableName}(tenant, po_number)
|
|
WHERE po_number IS NOT NULL;
|
|
`);
|
|
}
|
|
|
|
await knex.raw(`
|
|
COMMENT ON COLUMN ${tableName}.po_number IS 'Purchase Order number associated with this client contract';
|
|
`);
|
|
await knex.raw(`
|
|
COMMENT ON COLUMN ${tableName}.po_required IS 'Whether a Purchase Order is required for invoicing under this contract';
|
|
`);
|
|
|
|
console.log('✓ Added Purchase Order support columns to client_contracts');
|
|
} else {
|
|
console.log('⊘ Purchase Order columns already present on client_contracts, skipping');
|
|
}
|
|
};
|
|
|
|
exports.down = async function down(knex) {
|
|
await ensureSequentialMode(knex);
|
|
|
|
const tableName = 'client_contracts';
|
|
const tableExists = await knex.schema.hasTable(tableName);
|
|
if (!tableExists) {
|
|
console.log('⊘ client_contracts table not found, nothing to roll back');
|
|
return;
|
|
}
|
|
|
|
const [poNumberExists, poRequiredExists] = await Promise.all([
|
|
hasColumn(knex, tableName, 'po_number'),
|
|
hasColumn(knex, tableName, 'po_required'),
|
|
]);
|
|
|
|
if (!poNumberExists && !poRequiredExists) {
|
|
console.log('⊘ Purchase Order columns already absent, nothing to roll back');
|
|
return;
|
|
}
|
|
|
|
if (poNumberExists) {
|
|
const indexName = `idx_${tableName}_po_number`;
|
|
await knex.raw(`DROP INDEX IF EXISTS ${indexName};`);
|
|
}
|
|
|
|
await knex.schema.alterTable(tableName, (table) => {
|
|
if (poNumberExists) {
|
|
table.dropColumn('po_number');
|
|
}
|
|
if (poRequiredExists) {
|
|
table.dropColumn('po_required');
|
|
}
|
|
});
|
|
|
|
console.log('✓ Removed Purchase Order columns from client_contracts');
|
|
};
|
|
|
|
exports.config = { transaction: false };
|