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
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
const { Knex } = require('knex');
|
|
|
|
/**
|
|
* @param {Knex} knex
|
|
*/
|
|
exports.up = async function (knex) {
|
|
await knex.schema.createTable('plan_service_hourly_configs', (table) => {
|
|
table.uuid('tenant').notNullable(); // Corrected type to UUID
|
|
table
|
|
.uuid('config_id') // Corrected type to UUID
|
|
// .unsigned() // Not applicable for UUID
|
|
.notNullable()
|
|
.comment('Foreign key referencing plan_service_configuration.id');
|
|
|
|
table
|
|
.decimal('hourly_rate', 10, 2)
|
|
.notNullable()
|
|
.comment('The hourly rate for the service');
|
|
table
|
|
.integer('minimum_billable_time')
|
|
.unsigned()
|
|
.notNullable()
|
|
.comment('Minimum billable time in minutes');
|
|
table
|
|
.integer('round_up_to_nearest')
|
|
.unsigned()
|
|
.notNullable()
|
|
.comment('Round up time entries to the nearest specified minutes');
|
|
|
|
// Composite primary key including tenant
|
|
table.primary(['tenant', 'config_id']);
|
|
|
|
// Composite foreign key including tenant (NO CASCADE)
|
|
table
|
|
.foreign(['tenant', 'config_id'])
|
|
.references(['tenant', 'config_id']) // Corrected to reference config_id
|
|
.inTable('plan_service_configuration');
|
|
// Removed .onDelete('CASCADE') and .onUpdate('CASCADE')
|
|
|
|
// Index tenant for performance
|
|
table.index('tenant');
|
|
|
|
// Timestamps
|
|
table.timestamps(true, true); // Add created_at and updated_at
|
|
});
|
|
};
|
|
|
|
/**
|
|
* @param {Knex} knex
|
|
*/
|
|
exports.down = async function (knex) {
|
|
await knex.schema.dropTableIfExists('plan_service_hourly_configs');
|
|
};
|