id(); $table->unsignedBigInteger('area_id'); $table->string('segment'); $table->string('part'); $table->json('data')->default('[]'); $table->integer('sort')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('parts'); } };