# yatra/3.0.2.9/app/Database/Tables/DeparturesTable.php

Yatra – Travel Booking &amp; Tour Operator Software, version 3.0.2.9. 65 lines.

- Page: https://pluginprobe.com/plugins/yatra/3.0.2.9/code/app/Database/Tables/DeparturesTable.php
- Raw: https://pluginprobe.com/plugins/yatra/3.0.2.9/raw/app/Database/Tables/DeparturesTable.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.9/code/app/Database/Tables/DeparturesTable.php#L10-L20`.

```php
<?php

namespace Yatra\Database\Tables;

/**
 * Departures Table
 * 
 * Handles trip departures table operations
 * Table: wp_yatra_trip_departures
 */
class DeparturesTable extends BaseTable
{
    /**
     * Table name without prefix
     */
    protected static string $table = 'yatra_new_trip_departures';

    /**
     * Get table name
     */
    public static function getTableName(): string
    {
        global $wpdb;
        return $wpdb->prefix . static::$table;
    }

    /**
     * Get table schema
     */
    public static function getSchema(): string
    {
        global $wpdb;
        $table = static::getTableName();
        $charset_collate = $wpdb->get_charset_collate();

        return "
            CREATE TABLE IF NOT EXISTS `{$table}` (
                `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
                `trip_id` bigint(20) UNSIGNED NOT NULL,
                `date` date NOT NULL COMMENT 'Legacy single-day key — keep in sync with start_date',
                `start_date` date DEFAULT NULL COMMENT 'Trip start (booking / calendar)',
                `end_date` date DEFAULT NULL COMMENT 'Trip end (multi-day)',
                `time` time DEFAULT NULL,
                `max_capacity` int(11) NOT NULL DEFAULT 0,
                `booked_count` int(11) NOT NULL DEFAULT 0,
                `total_revenue` decimal(12,2) NOT NULL DEFAULT 0.00,
                `status` varchar(20) NOT NULL DEFAULT 'upcoming',
                `source` varchar(20) NOT NULL DEFAULT 'manual',
                `price_override` decimal(10,2) DEFAULT NULL,
                `price_by_traveler_type` longtext DEFAULT NULL,
                `notes` text DEFAULT NULL,
                `created_at` datetime NOT NULL,
                `updated_at` datetime DEFAULT NULL,
                PRIMARY KEY (`id`),
                KEY `date` (`date`),
                KEY `start_date` (`start_date`),
                KEY `status` (`status`),
                KEY `trip_date` (`trip_id`, `date`),
                KEY `trip_start` (`trip_id`, `start_date`),
                KEY `idx_trip_status` (`trip_id`, `status`)
            ) {$charset_collate};
        ";
    }
}

```
