diff options
author | Pleroma User <keine@partyheld.de> | 2024-06-08 01:39:08 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2024-06-08 01:39:08 +0000 |
commit | dbf29cbae482d2ab7da65cd8ade0b0a6bb915c02 (patch) | |
tree | 11e1fde58ae9b0664da76fbdf0bb807f86f8e877 /priv/repo/migrations | |
parent | b23b007d000b524b4997fcf975d1963fa832c720 (diff) | |
download | pleroma-dbf29cbae482d2ab7da65cd8ade0b0a6bb915c02.tar.gz pleroma-dbf29cbae482d2ab7da65cd8ade0b0a6bb915c02.zip |
Bump deps
Diffstat (limited to 'priv/repo/migrations')
-rw-r--r-- | priv/repo/migrations/20240608003957_upgrade_oban_jobs_to_v12.exs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/priv/repo/migrations/20240608003957_upgrade_oban_jobs_to_v12.exs b/priv/repo/migrations/20240608003957_upgrade_oban_jobs_to_v12.exs new file mode 100644 index 000000000..ed5bf4ebb --- /dev/null +++ b/priv/repo/migrations/20240608003957_upgrade_oban_jobs_to_v12.exs @@ -0,0 +1,7 @@ +defmodule Pleroma.Repo.Migrations.UpgradeObanJobsToV12 do + use Ecto.Migration + + def up, do: Oban.Migrations.up(version: 12) + + def down, do: Oban.Migrations.down(version: 12) +end |