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