michabbb / laravel-scheduler-watcher

Easy logging & monitoring of your Laravel cronjobs
MIT License
8 stars 4 forks source link

use correct type for column jobe_exitcode #7

Closed GuidoLeibbrand closed 2 years ago

GuidoLeibbrand commented 2 years ago

Datatype value is between 0-255 and no boolean. Unfortunately only SMALLINT (INT6) is supported by laravel instead of TINYINT (3).

michabbb commented 2 years ago

@GuidoLeibbrand

did you see:

https://laravel.com/docs/8.x/migrations#column-method-tinyInteger

??

GuidoLeibbrand commented 2 years ago

Oh see.. Yes, i will create a new pull request.