CloudyCity

Results 2 issues of CloudyCity

Original migration: ```php Schema::create('voucher', function (Blueprint $table) { $table->increments('id'); $table->unsignedDecimal('money')->nullable()->virtualAs('`config`->>"$.money"'); $table->json('config')->nullable(); $table->timestamps(); }); ``` To MySQL: ```mysql CREATE TABLE `pro_voucher` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `money` decimal(8,2) unsigned...

enhancement

**To Reproduce** Steps to reproduce the behavior: 1. Install with command: `curl -sSL https://git.io/g-install | sh -s` 2. Install go: `g install 1.22.1` **Error output** ``` gzip: stdin: not in...