id(); $table->ulid(); $table->string('name'); $table->string('url')->nullable(); $table->string('code')->nullable(); $table->string('secret'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clients'); } };