id(); $table->text('title'); $table->text('content'); $table->boolean('is_published')->default(false); $table->timestamp('published_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('posts'); } };