increments('id'); $table->integer("admin_id")->nullable(); $table->integer("project_id")->nullable(); $table->json("content")->nullable(); $table->integer("score")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('ask_submits'); } }