id(); $table->string('name', 125); $table->string('color_tag', 55)->nullable(); $table->foreignIdFor(\App\Models\Segment::class); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('actions'); } };