id(); $table->string('role_name')->nullable(); $table->string('role_guard')->nullable(); $table->text('permissions')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('permissions'); } };