diff --git a/database/migrations/20231018055419_fix_mall_goods.php b/database/migrations/20231018055419_fix_mall_goods.php new file mode 100644 index 0000000..114e547 --- /dev/null +++ b/database/migrations/20231018055419_fix_mall_goods.php @@ -0,0 +1,37 @@ +table('mall_goods'); + + $table->changeColumn($table->getColumn('license')->setDefault('')); + $table->changeColumn($table->getColumn('license_name')->setDefault('')); + + $table->update(); + } +} diff --git a/extend/base/common/command/admin/VersionBase.php b/extend/base/common/command/admin/VersionBase.php index 47ab7ee..e535e7b 100644 --- a/extend/base/common/command/admin/VersionBase.php +++ b/extend/base/common/command/admin/VersionBase.php @@ -12,12 +12,12 @@ use think\console\Output; class VersionBase extends Command { - public const VERSION = 'v2.0.55'; + public const VERSION = 'v2.0.56'; public const LAYUI_VERSION = '2.8.17'; public const COMMENT = [ - '清理技术债务', + '修复默认安装数据库的兼容性问题', '发布新版本', ];