# fluent-cart/1.6.4/database/Migrations/LabelMigrator.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.4. 18 lines.

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

```php
<?php

namespace FluentCart\Database\Migrations;

class LabelMigrator extends Migrator
{

    public static string $tableName = 'fct_label';

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

```
