Merge branch 'more-efficient-ci' into 'develop'
[akkoma] / priv / repo / migrations / 20180516144508_add_trigram_extension.exs
index f2f0fca8696842c9fc0e748c7d34021f449a9806..ff0710f842781bf8d6bdd90e703b35e6052168b7 100644 (file)
@@ -4,8 +4,15 @@ defmodule Pleroma.Repo.Migrations.AddTrigramExtension do
 
   def up do
     Logger.warn("ATTENTION ATTENTION ATTENTION\n")
-    Logger.warn("This will try to create the pg_trgm extension on your database. If your database user does NOT have the necessary rights, you will have to do it manually and re-run the migrations.\nYou can probably do this by running the following:\n")
-    Logger.warn("sudo -u postgres psql pleroma_dev -c \"create extension if not exists pg_trgm\"\n")
+
+    Logger.warn(
+      "This will try to create the pg_trgm extension on your database. If your database user does NOT have the necessary rights, you will have to do it manually and re-run the migrations.\nYou can probably do this by running the following:\n"
+    )
+
+    Logger.warn(
+      "sudo -u postgres psql pleroma_dev -c \"create extension if not exists pg_trgm\"\n"
+    )
+
     execute("create extension if not exists pg_trgm")
   end