fix: Correct executions table name for execution factory

This commit is contained in:
Faruk AYDIN
2023-10-24 12:35:29 +02:00
parent 870a110a75
commit a4c22799e7
+1 -1
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('*');