summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs
diff options
context:
space:
mode:
authorIvan Tashkinov <ivantashkinov@gmail.com>2019-08-01 17:28:00 +0300
committerIvan Tashkinov <ivantashkinov@gmail.com>2019-08-01 17:28:00 +0300
commit23d279e03ee1f7a1285614754738711359bc4b81 (patch)
tree4ec0b67b1ef6f8588546d5fb04e09a2b8a4aa57a /priv/repo/migrations/20190730055101_add_oban_jobs_table.exs
parentcdfd02e90455fe7c01026efb48af3194cc82252b (diff)
downloadpleroma-23d279e03ee1f7a1285614754738711359bc4b81.tar.gz
pleroma-23d279e03ee1f7a1285614754738711359bc4b81.zip
[#1149] Replaced RetryQueue with oban-based retries.
Diffstat (limited to 'priv/repo/migrations/20190730055101_add_oban_jobs_table.exs')
-rw-r--r--priv/repo/migrations/20190730055101_add_oban_jobs_table.exs6
1 files changed, 6 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs b/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs
new file mode 100644
index 000000000..2f201bd05
--- /dev/null
+++ b/priv/repo/migrations/20190730055101_add_oban_jobs_table.exs
@@ -0,0 +1,6 @@
+defmodule Pleroma.Repo.Migrations.AddObanJobsTable do
+ use Ecto.Migration
+
+ defdelegate up, to: Oban.Migrations
+ defdelegate down, to: Oban.Migrations
+end