id(); $table->timestamps(); $table->softDeletes(); $table->string("title"); $table->text("content"); $table->timestamp("published_at"); $table->timestamp("unpublished_at"); $table->tinyInteger("status")->unsigned()->default(0); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('articles'); } };