id(); $table->string('provider')->unique(); $table->boolean('enabled')->default(false); $table->string('client_id')->nullable(); $table->text('client_secret')->nullable(); $table->string('redirect_uri')->nullable(); $table->string('tenant')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('oauth_settings'); } };