Merge branch 'pleromapi' into 'develop'
[akkoma] / lib / mix / tasks / pleroma / database.ex
index bcde07774fb71b9365bec0bdc75169ebc4196aa6..57f73d12baa0bc70e6a11e243358a9c66aeec14e 100644 (file)
@@ -97,10 +97,10 @@ defmodule Mix.Tasks.Pleroma.Database do
     |> Repo.delete_all(timeout: :infinity)
 
     prune_hashtags_query = """
-    delete from hashtags as ht
-    where not exists (
-      select 1 from hashtags_objects hto
-      where ht.id = hto.hashtag_id)
+    DELETE FROM hashtags AS ht
+    WHERE NOT EXISTS (
+      SELECT 1 FROM hashtags_objects hto
+      WHERE ht.id = hto.hashtag_id)
     """
 
     Repo.query(prune_hashtags_query)