feat: Add error details jsonb column to execution steps
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Knex } from 'knex';
|
||||
|
||||
export async function up(knex: Knex): Promise<void> {
|
||||
return knex.schema.table('execution_steps', (table) => {
|
||||
table.jsonb('error_details');
|
||||
});
|
||||
}
|
||||
|
||||
export async function down(knex: Knex): Promise<void> {
|
||||
return knex.schema.table('execution_steps', (table) => {
|
||||
table.dropColumn('error_details');
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user