id(); $table->json('title'); $table->json('body'); $table->string('status')->default('draft')->index(); $table->timestamp('published_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };