whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
elastic
/
migrations
/
Upload File:
files >> //home/qbizpnmr/arif.umairtax.com/elastic/migrations/2025_08_31_221645_create_vendors_index.php
<?php declare(strict_types=1); use Elastic\Adapter\Indices\Mapping; use Elastic\Adapter\Indices\Settings; use Elastic\Migrations\Facades\Index; use Elastic\Migrations\MigrationInterface; final class CreateVendorsIndex implements MigrationInterface { /** * Run the migration. */ public function up(): void { $mapping = [ 'properties' => [ // Core vendor fields 'id' => ['type' => 'keyword'], 'name' => [ 'type' => 'text', 'analyzer' => 'standard' ], 'is_deleted' => ['type' => 'boolean'], 'hashed_id' => ['type' => 'keyword'], 'number' => ['type' => 'keyword'], 'id_number' => ['type' => 'keyword'], 'vat_number' => ['type' => 'keyword'], // Contact information 'phone' => ['type' => 'keyword'], // Address fields 'address1' => ['type' => 'keyword'], 'address2' => ['type' => 'keyword'], 'city' => ['type' => 'keyword'], 'state' => ['type' => 'keyword'], 'postal_code' => ['type' => 'keyword'], // Additional fields 'website' => ['type' => 'keyword'], 'private_notes' => [ 'type' => 'text', 'analyzer' => 'standard' ], 'public_notes' => [ 'type' => 'text', 'analyzer' => 'standard' ], // Custom fields 'custom_value1' => ['type' => 'keyword'], 'custom_value2' => ['type' => 'keyword'], 'custom_value3' => ['type' => 'keyword'], 'custom_value4' => ['type' => 'keyword'], // Company 'company_key' => ['type' => 'keyword'], ] ]; Index::createRaw('vendors_v2', $mapping); } /** * Reverse the migration. */ public function down(): void { Index::dropIfExists('vendors_v2'); } }
Copyright ©2021 || Defacer Indonesia