# yatra/3.0.2.8/app/Database/Tables/EnquiriesTable.php

Yatra – Travel Booking &amp; Tour Operator Software, version 3.0.2.8. 77 lines.

- Page: https://pluginprobe.com/plugins/yatra/3.0.2.8/code/app/Database/Tables/EnquiriesTable.php
- Raw: https://pluginprobe.com/plugins/yatra/3.0.2.8/raw/app/Database/Tables/EnquiriesTable.php
- Modified: 2026-04-14T03:47:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/yatra/3.0.2.8/code/app/Database/Tables/EnquiriesTable.php#L10-L20`.

```php
<?php

namespace Yatra\Database\Tables;

/**
 * Enquiries Table Class
 * 
 * Represents the customer enquiries table (wp_yatra_enquiries) containing
 * customer inquiry data including contact information, message content,
 * travel preferences, response tracking, and status management.
 * 
 * This table follows the new simplified pattern with only two static methods:
 * - getTableName(): Returns the prefixed table name
 * - getSchema(): Returns the complete CREATE TABLE SQL statement
 * 
 * Usage:
 * EnquiriesTable::getTableName()  // Returns 'wp_yatra_enquiries'
 * EnquiriesTable::getSchema()     // Returns complete SQL schema
 * 
 * @package Yatra\Database\Tables
 * @since 1.0.0
 */
class EnquiriesTable extends BaseTable
{
    /**
     * Table name without prefix
     * 
     * @var string The base table name without WordPress prefix
     */
    protected static string $table = 'yatra_new_enquiries';

    /**
     * Get the complete table schema as raw SQL CREATE TABLE statement
     * 
     * Returns the full SQL schema for the enquiries table using heredoc syntax
     * for proper IDE syntax highlighting. Includes all columns, indexes,
     * and constraints from the original Database.php schema.
     * 
     * @return string Complete CREATE TABLE SQL statement
     */
    public static function getSchema(): string
    {
        $tableName = static::getTableName();
        $charsetCollate = static::getCharsetCollate();

        return <<<SQL
CREATE TABLE IF NOT EXISTS `{$tableName}` (
    `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
    `trip_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'Related trip ID',
    `name` varchar(255) NOT NULL COMMENT 'Customer full name',
    `email` varchar(255) NOT NULL COMMENT 'Customer email',
    `phone` varchar(50) DEFAULT NULL COMMENT 'Customer phone',
    `message` text NOT NULL COMMENT 'Enquiry message',
    `travel_date` date DEFAULT NULL COMMENT 'Preferred travel date',
    `metadata` longtext DEFAULT NULL COMMENT 'JSON metadata (e.g., traveler classifications: [{\"id\":1,\"title\":\"Adult\",\"count\":2}])',
    `travelers_count` smallint(5) UNSIGNED DEFAULT NULL COMMENT 'Total travelers derived from metadata classifications',
    `status` varchar(50) DEFAULT 'new',
    `response_notes` text DEFAULT NULL COMMENT 'Internal response notes',
    `responded_at` datetime DEFAULT NULL COMMENT 'When enquiry was responded to',
    `responded_by` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'User who responded',
    `ip_address` varchar(45) DEFAULT NULL COMMENT 'Customer IP address',
    `user_agent` varchar(500) DEFAULT NULL COMMENT 'Customer browser info',
    `source` varchar(50) DEFAULT 'website' COMMENT 'Source of enquiry',
    `created_at` datetime DEFAULT CURRENT_TIMESTAMP,
    `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    `created_by` bigint(20) unsigned DEFAULT NULL COMMENT 'User ID who created this enquiry record',
    
    PRIMARY KEY (`id`),
    KEY `idx_trip_status` (`trip_id`, `status`),
    KEY `idx_email` (`email`),
    KEY `idx_status` (`status`),
    KEY `idx_created_at` (`created_at`)
) {$charsetCollate} COMMENT='Customer enquiries';
SQL;
    }
}

```
