id(); $table->string('slug'); $table->string('title'); $table->text('body'); $table->integer('category'); $table->boolean('is_collection'); $table->integer('tag_1'); $table->integer('tag_2'); $table->integer('tag_3'); $table->integer('tag_4'); $table->integer('tag_5'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('articles'); } };