From 13600e0abc794256fcce41bc439cde7f4d8917d7 Mon Sep 17 00:00:00 2001
From: Mar0xy <marie@kaifa.ch>
Date: Fri, 17 Nov 2023 15:17:47 +0100
Subject: [PATCH] upd: keep choice in `indexable` migration update

---
 packages/backend/migration/1700228972000-update-indexable.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/backend/migration/1700228972000-update-indexable.js b/packages/backend/migration/1700228972000-update-indexable.js
index 30db7529b2..e724e2ec7e 100644
--- a/packages/backend/migration/1700228972000-update-indexable.js
+++ b/packages/backend/migration/1700228972000-update-indexable.js
@@ -4,11 +4,11 @@ export class UpdateIndexable1700228972000 {
     async up(queryRunner) {
         await queryRunner.query(`ALTER TABLE "user" RENAME COLUMN "isIndexable" TO "noindex"`);
         await queryRunner.query(`ALTER TABLE "user" ALTER COLUMN "noindex" SET DEFAULT false`);
-        await queryRunner.query(`UPDATE "user" SET "noindex" = false WHERE "noindex" = true`);
+        await queryRunner.query(`UPDATE "user" SET "noindex" = NOT "noindex"`);
     }
 
     async down(queryRunner) {
-        await queryRunner.query(`UPDATE "user" SET "noindex" = true WHERE "noindex" = false`);
+        await queryRunner.query(`UPDATE "user" SET "noindex" = NOT "noindex"`);
         await queryRunner.query(`ALTER TABLE "user" ALTER COLUMN "noindex" SET DEFAULT true`);
         await queryRunner.query(`ALTER TABLE "user" RENAME COLUMN "noindex" TO "isIndexable"`);
     }