id(); $table->string('slug')->unique(); $table->string('name'); $table->text('description')->nullable(); $table->boolean('is_system')->default(false); $table->boolean('is_active')->default(true); $table->unsignedInteger('sort')->default(100); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('roles'); } };