id(); $table->string('name', 50); $table->string('description', 255); $table->boolean('active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('segments'); } };