id(); $table->string('name')->unique(); $table->string('display_name')->nullable(); $table->text('description')->nullable(); $table->boolean('is_wildcard')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('permissions'); } };