bigIncrements('id'); $table->string('name'); $table->ipAddress('ip'); $table->string('api_key'); $table->boolean('is_blacklisted')->default(false); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('clients'); } }