id(); $table->ulid(); $table->string('name'); $table->string('domain'); $table->text('secret'); $table->text('auth_type'); $table->text('webhook'); $table->longText('credentials'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clients'); } };