PSA/server/migrations/20251104120006_create_calendar_event_mappings.cjs
Hermes 284313f908
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
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

72 lines
2.6 KiB
JavaScript

/**
* Create calendar_event_mappings table for tracking sync relationships
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.up = async function up(knex) {
const tableName = 'calendar_event_mappings';
const exists = await knex.schema.hasTable(tableName);
if (!exists) {
await knex.schema.createTable(tableName, (table) => {
table.uuid('id').notNullable();
table.uuid('tenant').notNullable();
table.uuid('calendar_provider_id').notNullable();
table.uuid('schedule_entry_id').notNullable();
table.string('external_event_id', 255).notNullable();
table
.enu('sync_status', ['synced', 'pending', 'conflict', 'error'])
.defaultTo('pending');
table.timestamp('last_synced_at').nullable();
table.text('sync_error_message').nullable();
table.enu('sync_direction', ['to_external', 'from_external']).nullable();
table.timestamp('alga_last_modified').nullable();
table.timestamp('external_last_modified').nullable();
table.timestamp('created_at').notNullable().defaultTo(knex.fn.now());
table.timestamp('updated_at').notNullable().defaultTo(knex.fn.now());
table.primary(['id', 'tenant']);
table.foreign('tenant').references('tenant').inTable('tenants');
});
}
const indexStatements = [
`
CREATE INDEX IF NOT EXISTS calendar_event_mappings_tenant_calendar_provider_id_index
ON ${tableName} (tenant, calendar_provider_id)
`,
`
CREATE INDEX IF NOT EXISTS calendar_event_mappings_tenant_schedule_entry_id_index
ON ${tableName} (tenant, schedule_entry_id)
`,
`
CREATE INDEX IF NOT EXISTS calendar_event_mappings_tenant_external_event_id_index
ON ${tableName} (tenant, external_event_id)
`,
`
CREATE INDEX IF NOT EXISTS calendar_event_mappings_tenant_sync_status_index
ON ${tableName} (tenant, sync_status)
`,
`
CREATE UNIQUE INDEX IF NOT EXISTS calendar_event_mappings_tenant_schedule_entry_id_calendar_provider_id_unique
ON ${tableName} (tenant, schedule_entry_id, calendar_provider_id)
`,
`
CREATE UNIQUE INDEX IF NOT EXISTS calendar_event_mappings_tenant_external_event_id_calendar_provider_id_unique
ON ${tableName} (tenant, external_event_id, calendar_provider_id)
`,
];
for (const statement of indexStatements) {
await knex.raw(statement);
}
};
/**
* @param { import("knex").Knex } knex
* @returns { Promise<void> }
*/
exports.down = function(knex) {
return knex.schema.dropTableIfExists('calendar_event_mappings');
};