Acho que você não precisa usar o
timestamp
para criar seus campos, mas você deve usar o método dateTime
método: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();
});
Isso deve funcionar :)
Espero ter ajudado!