Skip to content

Commit a86f650

Browse files
authored
fix column type: jobe_exitcode
1 parent 1739320 commit a86f650

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

migrations/2020_05_12_200432_create_scheduler_watcher_job_events_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function up(): void {
1717
$table->dateTime('jobe_start')->nullable();
1818
$table->dateTime('jobe_end')->nullable();
1919
$table->float('jobe_duration', 20, 13)->nullable();
20-
$table->boolean('jobe_exitcode')->nullable();
20+
$table->tinyInteger('jobe_exitcode')->nullable();
2121
$table->dateTime('jobe_db_created')->nullable();
2222
});
2323
}

0 commit comments

Comments
 (0)