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