fix: Correct executions table name for execution factory

This commit is contained in:
Faruk AYDIN
2023-10-24 12:12:18 +02:00
parent 870a110a75
commit a4c22799e7

View File

@@ -6,7 +6,7 @@ export const createExecution = async (params: Partial<Execution> = {}) => {
params.testRun = params?.testRun || false;
const [execution] = await global.knex
.table('execution')
.table('executions')
.insert(params)
.returning('*');