id(); $table->string('title', 255); $table->text('text'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::dropIfExists('news'); } };