]> Untitled Git - lemmy.git/commitdiff
stop requiring superuser to run migrations (#3002)
authorCharles Hall <charles@computer.surgery>
Wed, 14 Jun 2023 11:54:12 +0000 (04:54 -0700)
committerGitHub <noreply@github.com>
Wed, 14 Jun 2023 11:54:12 +0000 (07:54 -0400)
Fixes <https://github.com/LemmyNet/lemmy/issues/2863>.

migrations/2022-07-07-182650_comment_ltrees/up.sql

index fde9e1b31e5c0e522de2b1bd4342dd64211f75cc..9f031ea63ef4364a7c28f6be301e508e538f47ba 100644 (file)
@@ -60,7 +60,7 @@ ORDER BY
        breadcrumb;
 
 -- Remove indexes and foreign key constraints, and disable triggers for faster updates
-alter table comment disable trigger all;
+alter table comment disable trigger user;
 
 alter table comment drop constraint if exists comment_creator_id_fkey;
 alter table comment drop constraint if exists comment_parent_id_fkey;
@@ -115,4 +115,4 @@ create index idx_path_gist on comment using gist (path);
 -- Drop the parent_id column
 alter table comment drop column parent_id cascade;
 
-alter table comment enable trigger all;
+alter table comment enable trigger user;