id(); $table->integer("product_id")->nullable(); $table->string("name")->nullable(); $table->integer("myindex")->default(0); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('factor'); } }