id(); $table->integer("type_id")->nullable(); $table->string("title")->nullable(); $table->string("video")->nullable(); $table->string("published_at")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('training'); } }