Skip to content

Commit b117b9b

Browse files
fix prompts migrations default status
1 parent 34f450a commit b117b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/prompts/database/migrations/create_command_executions_table.php.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ return new class extends Migration
1616
$table->string('flow_id')->unique();
1717
$table->string('command_name');
1818
$table->string('command_description')->nullable();
19-
$table->enum('status', ['cancelled', 'completed', 'failed'])->default('running');
19+
$table->enum('status', ['cancelled', 'completed', 'failed'])->default('cancelled');
2020
$table->timestamp('cancelled_at')->nullable();
2121
$table->string('cancelled_at_step')->nullable();
2222
$table->timestamp('started_at');

0 commit comments

Comments
 (0)