Jeg tror, at du ikke behøver at bruge timestamp
metode til at oprette dine felter, men du bør bruge dateTime
metode:
Schema::create('pusher_out_of_stocks', function (Blueprint $table) {
$table->increments('id');
$table->integer('pusher_id');
$table->integer('location_id');
$table->integer('product_id');
$table->dateTime('oos_at');
$table->dateTime('restocked_at')->nullable();
$table->timestamps();
$table->softDeletes();
});
Dette burde virke :)
Håber det hjalp!