Files
automatisch/packages/backend/src/models/execution.js
2024-01-04 19:27:13 +01:00

49 lines
1.1 KiB
JavaScript

import Base from './base';
import Flow from './flow';
import ExecutionStep from './execution-step';
import Telemetry from '../helpers/telemetry';
class Execution extends Base {
static tableName = 'executions';
static jsonSchema = {
type: 'object',
properties: {
id: { type: 'string', format: 'uuid' },
flowId: { type: 'string', format: 'uuid' },
testRun: { type: 'boolean', default: false },
internalId: { type: 'string' },
deletedAt: { type: 'string' },
createdAt: { type: 'string' },
updatedAt: { type: 'string' },
},
};
static relationMappings = () => ({
flow: {
relation: Base.BelongsToOneRelation,
modelClass: Flow,
join: {
from: 'executions.flow_id',
to: 'flows.id',
},
},
executionSteps: {
relation: Base.HasManyRelation,
modelClass: ExecutionStep,
join: {
from: 'executions.id',
to: 'execution_steps.execution_id',
},
},
});
async $afterInsert(queryContext) {
await super.$afterInsert(queryContext);
Telemetry.executionCreated(this);
}
}
export default Execution;