<?php

declare(strict_types=1);

namespace Aventa\Examples\Greeting;

use XiunoEvolution\Kernel\DataStore;
use XiunoEvolution\Kernel\Migration;

return [
    new Migration(
        '001-install',
        10,
        '0839afe4f6de95e5e30dc27c91162842b89f6315a229ebc198acb4443684b147',
        static function (DataStore $data): void {
            if ($data->get('example_greetings', 'default_prefix') === null) {
                $data->put('example_greetings', 'default_prefix', '你好');
            }
        },
        true,
    ),
];
