Файл: database/upgrades/2026_06_28_000041_expand_module_registries_cached_data.php
Строк: 27
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
return new class extends Migration {
/**
* cached_data хранит JSON реестра доступных модулей — перерос TEXT (64 КБ).
* Расширяем до LONGTEXT.
*/
public function up(): void
{
Schema::table('module_registries', function (Blueprint $table) {
$table->longText('cached_data')->nullable()->change();
});
}
public function down(): void
{
Schema::table('module_registries', function (Blueprint $table) {
$table->text('cached_data')->nullable()->change();
});
}
};