increments('id'); $table->string('public', 16)->nullable(); $table->text('secret'); $table->text('allowed_ips')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('api_keys'); } };