From 9da2cb881ef166032b5c37f010c886eb97d32f1d Mon Sep 17 00:00:00 2001 From: Floatingghost Date: Sun, 2 Mar 2025 11:32:40 +0000 Subject: [PATCH] upgrade oban migrations to v12 --- .../repo/migrations/20250302113138_upgrade_oban_to_v12.exs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 priv/repo/migrations/20250302113138_upgrade_oban_to_v12.exs diff --git a/priv/repo/migrations/20250302113138_upgrade_oban_to_v12.exs b/priv/repo/migrations/20250302113138_upgrade_oban_to_v12.exs new file mode 100644 index 000000000..6009d263c --- /dev/null +++ b/priv/repo/migrations/20250302113138_upgrade_oban_to_v12.exs @@ -0,0 +1,7 @@ +defmodule Pleroma.Repo.Migrations.UpgradeObanToV12 do + use Ecto.Migration + + def up, do: Oban.Migrations.up(version: 12) + + def down, do: Oban.Migrations.down(version: 12) +end