increments('id'); $table->string('name', 200)->nullable(); $table->integer('category')->nullable(); $table->float('price')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }