aboutsummaryrefslogtreecommitdiff
path: root/lib/mix
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2021-01-31 22:03:59 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2021-01-31 22:03:59 +0300
commit108e90b18edcfb57b9839e7c5d6d444a63ae2069 (patch)
tree38f59b6e4a2224c3b59150e3987ed4886824f901 /lib/mix
parent1b49b8efe57256b3f64b4b7e8a1de805ab030814 (diff)
downloadpleroma-108e90b18edcfb57b9839e7c5d6d444a63ae2069.tar.gz
[#3213] Explicitly defined PKs in hashtags_objects and data_migration_failed_ids. Added "pleroma.database rollback" task to revert a single migration.
Diffstat (limited to 'lib/mix')
-rw-r--r--lib/mix/tasks/pleroma/database.ex24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/mix/tasks/pleroma/database.ex b/lib/mix/tasks/pleroma/database.ex
index 4ddace9c9..30c0d2bf1 100644
--- a/lib/mix/tasks/pleroma/database.ex
+++ b/lib/mix/tasks/pleroma/database.ex
@@ -20,6 +20,30 @@ defmodule Mix.Tasks.Pleroma.Database do
@shortdoc "A collection of database related tasks"
@moduledoc File.read!("docs/administration/CLI_tasks/database.md")
+ # Rolls back a specific migration (leaving subsequent migrations applied)
+ # Based on https://stackoverflow.com/a/53825840
+ def run(["rollback", version]) do
+ start_pleroma()
+
+ version = String.to_integer(version)
+ re = ~r/^#{version}_.*\.exs/
+ path = Application.app_dir(:pleroma, Path.join(["priv", "repo", "migrations"]))
+
+ result =
+ with {:find, "" <> file} <- {:find, Enum.find(File.ls!(path), &String.match?(&1, re))},
+ {:compile, [{mod, _} | _]} <- {:compile, Code.compile_file(Path.join(path, file))},
+ {:rollback, :ok} <- {:rollback, Ecto.Migrator.down(Repo, version, mod)} do
+ {:ok, "Reversed migration: #{file}"}
+ else
+ {:find, _} -> {:error, "No migration found with version prefix: #{version}"}
+ {:compile, e} -> {:error, "Problem compiling migration module: #{inspect(e)}"}
+ {:rollback, e} -> {:error, "Problem reversing migration: #{inspect(e)}"}
+ e -> {:error, "Something unexpected happened: #{inspect(e)}"}
+ end
+
+ IO.inspect(result)
+ end
+
def run(["remove_embedded_objects" | args]) do
{options, [], []} =
OptionParser.parse(