jsonb('removed_properties')->default(new Expression("(JSON_ARRAY())")); } else { $table->jsonb('removed_properties')->default("[]")->nullable(); } }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('forms', function (Blueprint $table) { $table->dropColumn('removed_properties'); }); } };