unsignedBigInteger('id')->autoIncrement(); $table->string('code', 64)->unique(); $table->string('label', 128); $table->boolean('is_system')->default(false); $table->boolean('is_hierarchical')->default(false); $table->smallInteger('sort_order')->default(0); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('dict_sections'); } };