increments('id'); $table->integer('order_id')->nullable(); $table->string('courier_name', 255)->nullable(); $table->string('order_status', 555)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('histories'); } }