id(); $table->string('title'); $table->text('subtitle')->nullable(); $table->integer('sort')->default(999); $table->enum('status', ['draft', 'publish'])->default('publish'); $table->dateTime('published_at')->nullable(); $table->timestamps(); // Indexes $table->index('sort'); $table->index('status'); $table->index('published_at'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('timeline_groups'); } };