我有一个带有json列的表,我将某些值作为虚拟列拉出,其中一个是日期时间字段:persons-2 => ({:id 3, :name "isak"} {:id 4, :name "beatrice"})
persons-3 => ({:id 4, :name "beatrice"} {:id 3, :name "isak"})
运行迁移时,它会显示错误:$table->timestamp('date')->nullable()->virtualAs('data->>"$.Date"')->index();
为什么呢?如果它不是虚拟字段,则迁移顺利进行。