# fluent-cart/1.3.25/database/Migrations/AttributeGroupsMigrator.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.25. 22 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.25/code/database/Migrations/AttributeGroupsMigrator.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.25/raw/database/Migrations/AttributeGroupsMigrator.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.25/code/database/Migrations/AttributeGroupsMigrator.php#L10-L20`.

```php
<?php

namespace FluentCart\Database\Migrations;

use FluentCart\Framework\Database\Schema;

class AttributeGroupsMigrator extends Migrator
{
    public static string $tableName = 'fct_atts_groups';

    public static function getSqlSchema(): string
    {
        return "`id` BIGINT(20) UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
                `title` VARCHAR(192) NOT NULL UNIQUE,
                `slug` VARCHAR(192) NOT NULL UNIQUE,
                `description` longtext NULL,
                `settings` longtext NULL,
                `created_at` DATETIME NULL,
                `updated_at` DATETIME NULL";
    }
}

```
