json('notification_settings')->default(new Expression("(JSON_OBJECT())"))->nullable(true); } else { $table->json('notification_settings')->default('{}')->nullable(true); } }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('forms', function (Blueprint $table) { $table->dropColumn('notification_settings'); }); } };