php artisan make:migration create_clicks_table Schema::create('clicks', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('link_id'); $table->string('ip_address'); $table->text('user_agent')->nullable(); $table->string('country')->nullable(); $table->timestamps(); });