# fluent-cart/1.3.26/database/Migrations/AttributeObjectRelationsMigrator.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.26. 27 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.26/code/database/Migrations/AttributeObjectRelationsMigrator.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.26/raw/database/Migrations/AttributeObjectRelationsMigrator.php
- Modified: 2025-11-20T13:11:16+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/fluent-cart/1.3.26/code/database/Migrations/AttributeObjectRelationsMigrator.php#L10-L20`.

```php
<?php

namespace FluentCart\Database\Migrations;

use FluentCart\Framework\Database\Schema;

class AttributeObjectRelationsMigrator extends Migrator
{

    public static string $tableName = 'fct_atts_relations';

    public static function getSqlSchema(): string
    {
        $indexPrefix = static::getDbPrefix() . 'fct_at_rel_';
        return "`id` BIGINT(20) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
                `group_id` BIGINT(20) UNSIGNED NOT NULL,
                `term_id` BIGINT(20) UNSIGNED NOT NULL,
                `object_id` BIGINT(20) UNSIGNED NOT NULL,
                `created_at` DATETIME NULL,
                `updated_at` DATETIME NULL,

                INDEX `{$indexPrefix}_group_id_idx` (`group_id` ASC),
                INDEX `{$indexPrefix}_term_id_idx` (`term_id` ASC),
                INDEX `{$indexPrefix}_obj_id_idx` (`object_id` ASC)";
    }
}

```
