for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateStatisticsGeoipsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
Schema::create(config('rinvex.statistics.tables.geoips'), function (Blueprint $table) {
// Columns
$table->increments('id');
$table->string('client_ip');
$table->string('latitude');
$table->string('longitude');
$table->char('country_code', 2);
$table->json('client_ips')->nullable();
$table->boolean('is_from_trusted_proxy')->default(0);
$table->string('division_code')->nullable();
$table->string('postal_code')->nullable();
$table->string('timezone')->nullable();
$table->string('city')->nullable();
$table->integer('count')->unsigned()->default(0);
// Indexes
$table->unique(['client_ip', 'latitude', 'longitude']);
});
}
* Reverse the migrations.
public function down(): void
Schema::dropIfExists(config('rinvex.statistics.tables.geoips'));