Skip to content

Commit d76e1e3

Browse files
authored
Merge pull request #8 from GuidoLeibbrand/master
Use unsigned tiny integer for column jobe_exitcode to support values between 0-255
2 parents a86f650 + eea434f commit d76e1e3

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->tinyInteger('jobe_exitcode')->nullable();
20+
$table->unsignedTinyInteger('jobe_exitcode')->nullable();
2121
$table->dateTime('jobe_db_created')->nullable();
2222
});
2323
}

0 commit comments

Comments
 (0)