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
54 lines
2.1 KiB
JavaScript
54 lines
2.1 KiB
JavaScript
/**
|
|
* EE override that skips creation when calendar_event_mappings already exists.
|
|
* On fresh installs the earlier base migration already provisioned this table,
|
|
* so re-running the original script should be a no-op.
|
|
*
|
|
* @param { import('knex').Knex } knex
|
|
*/
|
|
|
|
exports.config = { transaction: false };
|
|
|
|
exports.up = async function up(knex) {
|
|
const exists = await knex.schema.hasTable('calendar_event_mappings');
|
|
if (exists) {
|
|
console.log('[calendar_event_mappings] Table already exists, skipping creation');
|
|
return;
|
|
}
|
|
|
|
await knex.schema.createTable('calendar_event_mappings', (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');
|
|
table.index(['tenant', 'calendar_provider_id']);
|
|
table.index(['tenant', 'schedule_entry_id']);
|
|
table.index(['tenant', 'external_event_id']);
|
|
table.index(['tenant', 'sync_status']);
|
|
table.unique(['tenant', 'schedule_entry_id', 'calendar_provider_id']);
|
|
table.unique(['tenant', 'external_event_id', 'calendar_provider_id']);
|
|
});
|
|
|
|
console.log('[calendar_event_mappings] Table created');
|
|
};
|
|
|
|
exports.down = async function down(knex) {
|
|
const exists = await knex.schema.hasTable('calendar_event_mappings');
|
|
if (exists) {
|
|
await knex.schema.dropTable('calendar_event_mappings');
|
|
console.log('[calendar_event_mappings] Table dropped');
|
|
}
|
|
};
|