korhonen.cc/content/posts/migrate_misskey_root_account/code/update_users.sql
Marko Korhonen 12b21aec19
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add finnish version of the first post, refactor AsciiDoc on other pages
Now the documents follow the AsciiDoctor best practices https://asciidoctor.org/docs/asciidoc-recommended-practices/
2024-01-28 11:40:09 +02:00

5 lines
144 B
PL/PgSQL

misskey=# BEGIN;
UPDATE "user" SET "isRoot" = true WHERE id = '9n1njqolcd';
UPDATE "user" SET "isRoot" = false WHERE id = '9n342nasd3';
COMMIT;