# yatra/3.0.14.2/app/Database/Tables/DiscountsTable.php

Yatra – Travel Booking &amp; Tour Operator Software, version 3.0.14.2. 148 lines.

- Page: https://pluginprobe.com/plugins/yatra/3.0.14.2/code/app/Database/Tables/DiscountsTable.php
- Raw: https://pluginprobe.com/plugins/yatra/3.0.14.2/raw/app/Database/Tables/DiscountsTable.php
- Modified: 2026-05-25T04:28: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.14.2/code/app/Database/Tables/DiscountsTable.php#L10-L20`.

```php
<?php

namespace Yatra\Database\Tables;

/**
 * Discounts Table Class
 * 
 * Represents the discounts table (wp_yatra_discounts) containing comprehensive
 * discount management data including promo codes, group discounts,
 * usage tracking, and advanced discount configurations.
 * 
 * Static API: {@see getTableName()}, {@see getWritableColumnNames()},
 * {@see getRestRequestBodyColumnNames()}, {@see getSchema()}.
 * 
 * Usage:
 * DiscountsTable::getTableName()  // Returns 'wp_yatra_discounts'
 * DiscountsTable::getSchema()     // Returns complete SQL schema
 * 
 * @package Yatra\Database\Tables
 * @since 1.0.0
 */
class DiscountsTable extends BaseTable
{
    /**
     * Table name without prefix
     * 
     * @var string The base table name without WordPress prefix
     */
    protected static string $table = 'yatra_discounts';

    /**
     * Columns that exist on {@see getSchema()} (excluding `id`) for repository mass-assignment.
     *
     * @return list<string>
     */
    public static function getWritableColumnNames(): array
    {
        return [
            'code',
            'description',
            'type',
            'amount',
            'max_discount_amount',
            'usage_limit',
            'usage_limit_per_customer',
            'usage_count',
            'valid_from',
            'expiry_date',
            'status',
            'applicable_to',
            'trip_ids',
            'min_amount',
            'first_time_customer_only',
            'is_group_discount',
            'discount_mode',
            'min_group_size',
            'max_group_size',
            'group_discount_type',
            'group_discount_amount',
            'group_discount_mode',
            'group_discount_ranges',
            'category_discounts',
            'created_at',
            'updated_at',
            'created_by',
            'updated_by',
        ];
    }

    /**
     * REST request body keys allowed through {@see \Yatra\Controllers\DiscountController}.
     * Omits display-only keys (e.g. created_by_name) and server-controlled timestamps.
     * Updates do not accept `created_by` from the client.
     *
     * @return list<string>
     */
    public static function getRestRequestBodyColumnNames(bool $forCreate): array
    {
        $base = array_values(array_diff(
            self::getWritableColumnNames(),
            ['created_at', 'updated_at']
        ));

        if (!$forCreate) {
            $base = array_values(array_diff($base, ['created_by']));
        }

        return $base;
    }

    /**
     * Get the complete table schema as raw SQL CREATE TABLE statement.
     *
     * Returns the full SQL schema for the discounts 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,
    `code` varchar(100) NOT NULL,
    `description` text,
    `type` varchar(20) NOT NULL DEFAULT 'percentage',
    `amount` decimal(10,2) NOT NULL DEFAULT 0.00,
    `max_discount_amount` decimal(10,2) DEFAULT NULL,
    `usage_limit` int(11) NOT NULL DEFAULT 0,
    `usage_limit_per_customer` int(11) DEFAULT 0,
    `usage_count` int(11) NOT NULL DEFAULT 0,
    `valid_from` datetime DEFAULT NULL,
    `expiry_date` datetime DEFAULT NULL,
    `status` varchar(20) DEFAULT 'draft',
    `applicable_to` varchar(20) DEFAULT 'all',
    `trip_ids` text DEFAULT NULL,
    `min_amount` decimal(10,2) DEFAULT NULL,
    `first_time_customer_only` tinyint(1) DEFAULT 0,
    `is_group_discount` tinyint(1) DEFAULT 0,
    `discount_mode` varchar(20) DEFAULT 'both' COMMENT 'promo, group, or both',
    `min_group_size` int(11) DEFAULT NULL,
    `max_group_size` int(11) DEFAULT NULL,
    `group_discount_type` varchar(20) DEFAULT 'percentage',
    `group_discount_amount` decimal(10,2) DEFAULT NULL,
    `group_discount_mode` varchar(20) DEFAULT 'total',
    `group_discount_ranges` longtext DEFAULT NULL,
    `category_discounts` longtext DEFAULT NULL,
    `created_at` datetime DEFAULT CURRENT_TIMESTAMP,
    `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    `created_by` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
    `updated_by` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
    
    PRIMARY KEY (`id`),
    UNIQUE KEY `code` (`code`),
    KEY `type` (`type`),
    KEY `status` (`status`),
    KEY `valid_from` (`valid_from`),
    KEY `expiry_date` (`expiry_date`),
    KEY `created_by` (`created_by`)
) {$charsetCollate} COMMENT='Discount codes and group discounts';
SQL;
    }
}

```
